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/math/trunc/is-implemented.js
blob: 3e8cde1f0053dd9bcfcd70ac8c65ee189f045fae (plain)
1
2
3
4
5
6
7
'use strict';

module.exports = function () {
	var trunc = Math.trunc;
	if (typeof trunc !== 'function') return false;
	return (trunc(13.67) === 13) && (trunc(-13.67) === -13);
};