]> git.r.bdr.sh - rbdr/dotfiles/blob
d9fbe49edc2d99625edfe163bb85991632ced5ea
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function (t, a) {
4 a(t({}), NaN, "NaN");
5 a(t(0), 0, "Zero");
6 a(t(Infinity), Infinity, "Infinity");
7 a(t(-Infinity), -Infinity, "-Infinity");
8 a(t(-2), -1.4436354751788103, "Negative");
9 a(t(2), 1.4436354751788103, "Positive");
10 };