mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
386 B
20 lines
386 B
5 years ago
|
export const tests = []
|
||
|
const t = (f) => tests.push(f)
|
||
|
|
||
|
// bigger
|
||
|
t(() => typeof biggie !== 'undefined')
|
||
|
t(() => biggie > 1.7976931348623157e308)
|
||
|
|
||
|
// smaller
|
||
|
t(() => typeof smalls !== 'undefined')
|
||
|
t(() => smalls < -1.7976931348623157e308)
|
||
|
|
||
|
Object.freeze(tests)
|
||
|
|
||
|
/*
|
||
|
“Damn right I like the life I live,
|
||
|
because I went from negative to positive.”
|
||
|
|
||
|
― The Notorius B.I.G
|
||
|
*/
|