You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
642 B
17 lines
642 B
import { truncate } from './helpers.js'; |
|
const isNaN = Number.isNaN || (i => i !== i); // eslint-disable-line no-self-compare |
|
export default function inspectNumber(number, options) { |
|
if (isNaN(number)) { |
|
return options.stylize('NaN', 'number'); |
|
} |
|
if (number === Infinity) { |
|
return options.stylize('Infinity', 'number'); |
|
} |
|
if (number === -Infinity) { |
|
return options.stylize('-Infinity', 'number'); |
|
} |
|
if (number === 0) { |
|
return options.stylize(1 / number === Infinity ? '+0' : '-0', 'number'); |
|
} |
|
return options.stylize(truncate(String(number), options.truncate), 'number'); |
|
}
|
|
|