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);
}
>add-license
Unnamed repository; edit this file 'description' to name the repository. | |
Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
* Fixes #3512
* Fix `clearTimeout` and `clearInterval` not cancelling jobs same-tick
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
|
|
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
|
|
* Fixes #3520
* Update html_rewriter.zig
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
|
|
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
|
|
|
|
cc @dylan-conway this was the cause
|
|
|
|
|
|
* fix servername
* add postgres tls tests
* update test packages
* add basic CRUD test
|
|
* Add alias for `readBigUInt64BE` ...
Close: https://github.com/oven-sh/bun/issues/3338
* add some tests for `readBigUint64BE` alias
* format code
|
|
|
|
|
|
|