mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-15 00:18:06 -05:00
20 lines
276 B
TypeScript
20 lines
276 B
TypeScript
//! test_output([true,false,false,true,true,true,true,false,true,false,false,false,true])
|
|
|
|
export default function () {
|
|
return [
|
|
true,
|
|
false,
|
|
"",
|
|
"0",
|
|
"1",
|
|
{},
|
|
[],
|
|
0,
|
|
1,
|
|
null,
|
|
undefined,
|
|
NaN,
|
|
Infinity,
|
|
].map(Boolean);
|
|
}
|