Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

View File

@@ -1,23 +1,23 @@
import isObject from './isObject.js';
import isSymbol from './isSymbol.js';
import isObject from './isObject.js'
import isSymbol from './isSymbol.js'
/** Used as references for various `Number` constants. */
const NAN = 0 / 0;
const NAN = 0 / 0
/** Used to match leading and trailing whitespace. */
const reTrim = /^\s+|\s+$/g;
const reTrim = /^\s+|\s+$/g
/** Used to detect bad signed hexadecimal string values. */
const reIsBadHex = /^[-+]0x[0-9a-f]+$/i;
const reIsBadHex = /^[-+]0x[0-9a-f]+$/i
/** Used to detect binary string values. */
const reIsBinary = /^0b[01]+$/i;
const reIsBinary = /^0b[01]+$/i
/** Used to detect octal string values. */
const reIsOctal = /^0o[0-7]+$/i;
const reIsOctal = /^0o[0-7]+$/i
/** Built-in method references without a dependency on `root`. */
const freeParseInt = parseInt;
const freeParseInt = parseInt
/**
* Converts `value` to a number.
@@ -29,37 +29,37 @@ const freeParseInt = parseInt;
* @see isInteger, toInteger, isNumber
* @example
*
* toNumber(3.2);
* toNumber(3.2)
* // => 3.2
*
* toNumber(Number.MIN_VALUE);
* toNumber(Number.MIN_VALUE)
* // => 5e-324
*
* toNumber(Infinity);
* toNumber(Infinity)
* // => Infinity
*
* toNumber('3.2');
* toNumber('3.2')
* // => 3.2
*/
function toNumber(value) {
if (typeof value == 'number') {
return value;
return value
}
if (isSymbol(value)) {
return NAN;
return NAN
}
if (isObject(value)) {
const other = typeof value.valueOf == 'function' ? value.valueOf() : value;
value = isObject(other) ? `${ other }` : other;
const other = typeof value.valueOf == 'function' ? value.valueOf() : value
value = isObject(other) ? `${ other }` : other
}
if (typeof value != 'string') {
return value === 0 ? value : +value;
return value === 0 ? value : +value
}
value = value.replace(reTrim, '');
const isBinary = reIsBinary.test(value);
value = value.replace(reTrim, '')
const isBinary = reIsBinary.test(value)
return (isBinary || reIsOctal.test(value))
? freeParseInt(value.slice(2), isBinary ? 2 : 8)
: (reIsBadHex.test(value) ? NAN : +value);
: (reIsBadHex.test(value) ? NAN : +value)
}
export default toNumber;
export default toNumber