Send to zulip

This commit is contained in:
Koper
2023-11-20 21:39:33 +07:00
parent 82f50817f8
commit ba40d28152
3609 changed files with 2311843 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
import { truncate } from './helpers'
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(number, options.truncate), 'number')
}