aboutsummaryrefslogtreecommitdiff
path: root/node_modules/number-is-nan/index.js
blob: 79be4b9cb8c3bceb6eb08cfca105221d8cee0db1 (plain)
1
2
3
4
'use strict';
module.exports = Number.isNaN || function (x) {
	return x !== x;
};