summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/node-gyp/node_modules/path-array/node_modules/array-index/node_modules/es6-symbol/node_modules/es5-ext/test/math/trunc/shim.js
blob: 9e5eed7910e13c1d3d49a1e9530c14de449e419d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict';

var is = require('../../../object/is');

module.exports = function (t, a) {
	a(t({}), NaN, "NaN");
	a(t(0), 0, "Zero");
	a(t(Infinity), Infinity, "Infinity");
	a(t(-Infinity), -Infinity, "-Infinity");
	a(is(t(0.234), 0), true, "0");
	a(is(t(-0.234), -0), true, "-0");
	a(t(13.7), 13, "Positive #1");
	a(t(12.3), 12, "Positive #2");
	a(t(-12.3), -12, "Negative #1");
	a(t(-14.7), -14, "Negative #2");
};