Projekt

Obecné

Profil

Stáhnout (214 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
var $isNaN = Number.isNaN || function (a) { return a !== a; };
4

    
5
module.exports = Number.isFinite || function (x) { return typeof x === 'number' && !$isNaN(x) && x !== Infinity && x !== -Infinity; };
(14-14/26)