Testing the test systems: CodeceptJS + Playwright vs Cypress
Old link should have expired already
updated proto3 link
Old link should have expired already
Low priority for me; I just hope any weird non-JS compatible syntax is well documented. (eg mentioned on website 1-2 times, in blog posts, etc)
Works fine in Firefox Win10. But the responsive realignment is off; some browser widths make it look weird. Is your window zoom at 1?
Any progress please? Affecting other plugins: https://github.com/mtbaqer/vscode-better-folding#known-issues
Some progress seems to be made with monkey-patch: https://github.com/iocave/monkey-patch/pull/58
https://github.com/lukeed/awesome-cloudflare-workers
closes #4
Refactored a bit; hope it is still readable to you.
Maybe the else if
chain could be refactored to switch
?
Maybe not RegEx; this works:
else if ((t === 'object') || isArray) {
for (const k in obj) {
if (obj.hasOwnProperty(k)) {
if (isArray) {
objToFlatArray(obj[k], acc, separator, `${prefix}[${k}]`);
}
else {
let prefixDot = prefix ? prefix + separator : '';
objToFlatArray(obj[k], acc, separator, `${prefixDot}${k}`);
}
}
}
}
But let me clean it up.