var lines; const data = () => lines.map(([a = null, b = null, c = null, d = null]) => ({ a, b, c, d })); export function test() { let ran = false; lines = [ [undefined, undefined, undefined, undefined], [undefined, undefined, undefined, undefined], [undefined, undefined, undefined, undefined], [undefined, undefined, undefined, undefined] ]; for (let foo of data()) { console.assert(foo.a === null); console.assert(foo.b === null); console.assert(foo.c === null); console.assert(foo.d === null); ran = true; } console.assert(ran); testDone(import.meta.url); } Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/examples/blog-multiple-authors/.stackblitzrc (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-06-27Refactor: remove Deno shim to esbuild "banner" (#3734)Gravatar Ben Holmes 7-15/+22
2022-06-27[ci] formatGravatar FredKSchott 9-23/+25
2022-06-27update telemetry to support more anonymized project id (#3713)Gravatar Fred K. Schott 20-351/+311
2022-06-27SImplify "astro add" by removing confusing multi-select (#3715)Gravatar Fred K. Schott 13-258/+157