first commit
This commit is contained in:
20
node_modules/is-nan/index.js
generated
vendored
Normal file
20
node_modules/is-nan/index.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
'use strict';
|
||||
|
||||
var callBind = require('call-bind');
|
||||
var define = require('define-properties');
|
||||
|
||||
var implementation = require('./implementation');
|
||||
var getPolyfill = require('./polyfill');
|
||||
var shim = require('./shim');
|
||||
|
||||
var polyfill = callBind(getPolyfill(), Number);
|
||||
|
||||
/* http://www.ecma-international.org/ecma-262/6.0/#sec-number.isnan */
|
||||
|
||||
define(polyfill, {
|
||||
getPolyfill: getPolyfill,
|
||||
implementation: implementation,
|
||||
shim: shim
|
||||
});
|
||||
|
||||
module.exports = polyfill;
|
||||
Reference in New Issue
Block a user