Skip to content

Commit

Permalink
lib: switch to Number.isNaN
Browse files Browse the repository at this point in the history
Number.isNaN is now as fast as `val !== val`. Switch to the more
readable version. Also switch all `isNaN` to `Number.isNaN`.

PR-URL: #18744
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
BridgeAR authored and MylesBorins committed Feb 21, 2018
1 parent f3ab106 commit 16aeddd
Show file tree
Hide file tree
Showing 10 changed files with 27 additions and 28 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yaml
Expand Up @@ -74,6 +74,7 @@ rules:
message: __defineSetter__ is deprecated.
no-return-await: error
no-self-assign: error
no-self-compare: error
no-throw-literal: error
no-unused-labels: error
no-useless-call: error
Expand Down
2 changes: 1 addition & 1 deletion lib/_stream_readable.js
Expand Up @@ -348,7 +348,7 @@ function howMuchToRead(n, state) {
return 0;
if (state.objectMode)
return 1;
if (n !== n) {
if (Number.isNaN(n)) {
// Only flow one buffer at a time
if (state.flowing && state.length)
return state.buffer.head.data.length;
Expand Down
20 changes: 10 additions & 10 deletions lib/buffer.js
Expand Up @@ -362,8 +362,7 @@ function fromArrayBuffer(obj, byteOffset, length) {
byteOffset = 0;
} else {
byteOffset = +byteOffset;
// check for NaN
if (byteOffset !== byteOffset)
if (Number.isNaN(byteOffset))
byteOffset = 0;
}

Expand All @@ -375,7 +374,7 @@ function fromArrayBuffer(obj, byteOffset, length) {
if (length === undefined) {
length = maxLength;
} else {
// convert length to non-negative integer
// Convert length to non-negative integer.
length = +length;
if (length > 0) {
if (length > maxLength)
Expand Down Expand Up @@ -757,8 +756,7 @@ function bidirectionalIndexOf(buffer, val, byteOffset, encoding, dir) {
// Coerce to Number. Values like null and [] become 0.
byteOffset = +byteOffset;
// If the offset is undefined, "foo", {}, coerces to NaN, search whole buffer.
// `x !== x`-style conditionals are a faster form of `isNaN(x)`
if (byteOffset !== byteOffset) {
if (Number.isNaN(byteOffset)) {
byteOffset = dir ? 0 : buffer.length;
}
dir = !!dir; // Cast to bool.
Expand Down Expand Up @@ -989,15 +987,17 @@ function adjustOffset(offset, length) {
// Use Math.trunc() to convert offset to an integer value that can be larger
// than an Int32. Hence, don't use offset | 0 or similar techniques.
offset = Math.trunc(offset);
// `x !== x`-style conditionals are a faster form of `isNaN(x)`
if (offset === 0 || offset !== offset) {
if (offset === 0) {
return 0;
} else if (offset < 0) {
}
if (offset < 0) {
offset += length;
return offset > 0 ? offset : 0;
} else {
return offset < length ? offset : length;
}
if (offset < length) {
return offset;
}
return Number.isNaN(offset) ? 0 : length;
}


Expand Down
6 changes: 2 additions & 4 deletions lib/events.js
Expand Up @@ -52,9 +52,7 @@ Object.defineProperty(EventEmitter, 'defaultMaxListeners', {
return defaultMaxListeners;
},
set: function(arg) {
// check whether the input is a positive number (whose value is zero or
// greater and not a NaN).
if (typeof arg !== 'number' || arg < 0 || arg !== arg) {
if (typeof arg !== 'number' || arg < 0 || Number.isNaN(arg)) {
const errors = lazyErrors();
throw new errors.TypeError('ERR_OUT_OF_RANGE', 'defaultMaxListeners');
}
Expand All @@ -76,7 +74,7 @@ EventEmitter.init = function() {
// Obviously not all Emitters should be limited to 10. This function allows
// that to be increased. Set to zero for unlimited.
EventEmitter.prototype.setMaxListeners = function setMaxListeners(n) {
if (typeof n !== 'number' || n < 0 || isNaN(n)) {
if (typeof n !== 'number' || n < 0 || Number.isNaN(n)) {
const errors = lazyErrors();
throw new errors.TypeError('ERR_OUT_OF_RANGE', 'n');
}
Expand Down
4 changes: 2 additions & 2 deletions lib/internal/crypto/random.js
Expand Up @@ -11,7 +11,7 @@ const { kMaxLength } = require('buffer');
const kMaxUint32 = Math.pow(2, 32) - 1;

function assertOffset(offset, length) {
if (typeof offset !== 'number' || offset !== offset) {
if (typeof offset !== 'number' || Number.isNaN(offset)) {
throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'offset', 'number');
}

Expand All @@ -25,7 +25,7 @@ function assertOffset(offset, length) {
}

function assertSize(size, offset = 0, length = Infinity) {
if (typeof size !== 'number' || size !== size) {
if (typeof size !== 'number' || Number.isNaN(size)) {
throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'size', 'number');
}

Expand Down
2 changes: 1 addition & 1 deletion lib/internal/repl.js
Expand Up @@ -51,7 +51,7 @@ function createRepl(env, opts, cb) {
}

const historySize = Number(env.NODE_REPL_HISTORY_SIZE);
if (!isNaN(historySize) && historySize > 0) {
if (!Number.isNaN(historySize) && historySize > 0) {
opts.historySize = historySize;
} else {
// XXX(chrisdickinson): set here to avoid affecting existing applications
Expand Down
2 changes: 1 addition & 1 deletion lib/net.js
Expand Up @@ -1277,7 +1277,7 @@ function createServerHandle(address, port, addressType, fd) {
handle = new Pipe(PipeConstants.SERVER);
if (process.platform === 'win32') {
var instances = parseInt(process.env.NODE_PENDING_PIPE_INSTANCES);
if (!isNaN(instances)) {
if (!Number.isNaN(instances)) {
handle.setPendingInstances(instances);
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/readline.js
Expand Up @@ -103,7 +103,7 @@ function Interface(input, output, completer, terminal) {
}

if (typeof historySize !== 'number' ||
isNaN(historySize) ||
Number.isNaN(historySize) ||
historySize < 0) {
throw new errors.RangeError(
'ERR_INVALID_OPT_VALUE',
Expand Down
2 changes: 1 addition & 1 deletion lib/repl.js
Expand Up @@ -476,7 +476,7 @@ function REPLServer(prompt,
// display next prompt and return.
if (trimmedCmd) {
if (trimmedCmd.charAt(0) === '.' && trimmedCmd.charAt(1) !== '.' &&
isNaN(parseFloat(trimmedCmd))) {
Number.isNaN(parseFloat(trimmedCmd))) {
const matches = trimmedCmd.match(/^\.([^\s]+)\s*(.*)$/);
const keyword = matches && matches[1];
const rest = matches && matches[2];
Expand Down
14 changes: 7 additions & 7 deletions lib/zlib.js
Expand Up @@ -177,7 +177,7 @@ function Zlib(opts, mode) {

if (opts) {
chunkSize = opts.chunkSize;
if (chunkSize !== undefined && chunkSize === chunkSize) {
if (chunkSize !== undefined && !Number.isNaN(chunkSize)) {
if (chunkSize < Z_MIN_CHUNK || !Number.isFinite(chunkSize))
throw new errors.RangeError('ERR_INVALID_OPT_VALUE',
'chunkSize',
Expand All @@ -187,15 +187,15 @@ function Zlib(opts, mode) {
}

flush = opts.flush;
if (flush !== undefined && flush === flush) {
if (flush !== undefined && !Number.isNaN(flush)) {
if (flush < Z_NO_FLUSH || flush > Z_BLOCK || !Number.isFinite(flush))
throw new errors.RangeError('ERR_INVALID_OPT_VALUE', 'flush', flush);
} else {
flush = Z_NO_FLUSH;
}

finishFlush = opts.finishFlush;
if (finishFlush !== undefined && finishFlush === finishFlush) {
if (finishFlush !== undefined && !Number.isNaN(finishFlush)) {
if (finishFlush < Z_NO_FLUSH || finishFlush > Z_BLOCK ||
!Number.isFinite(finishFlush)) {
throw new errors.RangeError('ERR_INVALID_OPT_VALUE',
Expand All @@ -207,7 +207,7 @@ function Zlib(opts, mode) {
}

windowBits = opts.windowBits;
if (windowBits !== undefined && windowBits === windowBits) {
if (windowBits !== undefined && !Number.isNaN(windowBits)) {
if (windowBits < Z_MIN_WINDOWBITS || windowBits > Z_MAX_WINDOWBITS ||
!Number.isFinite(windowBits)) {
throw new errors.RangeError('ERR_INVALID_OPT_VALUE',
Expand All @@ -219,7 +219,7 @@ function Zlib(opts, mode) {
}

level = opts.level;
if (level !== undefined && level === level) {
if (level !== undefined && !Number.isNaN(level)) {
if (level < Z_MIN_LEVEL || level > Z_MAX_LEVEL ||
!Number.isFinite(level)) {
throw new errors.RangeError('ERR_INVALID_OPT_VALUE',
Expand All @@ -230,7 +230,7 @@ function Zlib(opts, mode) {
}

memLevel = opts.memLevel;
if (memLevel !== undefined && memLevel === memLevel) {
if (memLevel !== undefined && !Number.isNaN(memLevel)) {
if (memLevel < Z_MIN_MEMLEVEL || memLevel > Z_MAX_MEMLEVEL ||
!Number.isFinite(memLevel)) {
throw new errors.RangeError('ERR_INVALID_OPT_VALUE',
Expand All @@ -241,7 +241,7 @@ function Zlib(opts, mode) {
}

strategy = opts.strategy;
if (strategy !== undefined && strategy === strategy) {
if (strategy !== undefined && !Number.isNaN(strategy)) {
if (strategy < Z_DEFAULT_STRATEGY || strategy > Z_FIXED ||
!Number.isFinite(strategy)) {
throw new errors.TypeError('ERR_INVALID_OPT_VALUE',
Expand Down

0 comments on commit 16aeddd

Please sign in to comment.