Add is.infinite()

This commit is contained in:
Melvin Philips 2017-10-05 00:18:25 -07:00 committed by Sindre Sorhus
parent 11b98171c8
commit 24c964a7c7
3 changed files with 16 additions and 2 deletions

View file

@ -161,4 +161,6 @@ is.inRange = (x, range) => {
throw new TypeError(`Invalid range: ${util.inspect(range)}`);
};
is.infinite = x => x === Infinity || x === -Infinity;
module.exports = is;