UNPKG

compound-ex4

Version:

Compound-ex4 - MVC framework for NodeJS (ExpressJs 4 version), fork compoundjs(https://github.com/1602/compound)

12 lines (9 loc) 252 B
'use strict'; var is = require('../../../object/is'); module.exports = function (t, a) { a(is(t(0), +0), true, "+0"); a(is(t(-0), -0), true, "-0"); a(t({}), NaN, true, "NaN"); a(t(-234234234), -1, "Negative"); a(t(234234234), 1, "Positive"); };