mirror of
https://github.com/thangisme/notes.git
synced 2025-01-18 14:56:37 -05:00
7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
|
'use strict';
|
||
|
var numberIsNan = require('number-is-nan');
|
||
|
|
||
|
module.exports = Number.isFinite || function (val) {
|
||
|
return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity);
|
||
|
};
|