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

module.exports = function () {
	var isNaN = Number.isNaN;
	if (typeof isNaN !== 'function') return false;
	return !isNaN({}) && isNaN(NaN) && !isNaN(34);
};