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/sinh/shim.js
blob: 4f63b59e735bf0141fce6db07bc01b46bf0ef7fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';

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(t(1), 1.1752011936438014, "1");
	a(t(Number.MAX_VALUE), Infinity);
	a(t(-Number.MAX_VALUE), -Infinity);
	a(t(Number.MIN_VALUE), 5e-324);
	a(t(-Number.MIN_VALUE), -5e-324);
};