mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 07:28:03 -05:00
19 lines
256 B
TypeScript
19 lines
256 B
TypeScript
// test_output! [true,false,false,true,true,true,true,false,true,false,false,false]
|
|
|
|
export default function () {
|
|
return [
|
|
true,
|
|
false,
|
|
"",
|
|
"0",
|
|
"1",
|
|
{},
|
|
[],
|
|
0,
|
|
1,
|
|
null,
|
|
undefined,
|
|
NaN,
|
|
].map(Boolean);
|
|
}
|