Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
default-number
Advanced tools
Get a default number when a number is a non-number, a NaN or out of range.
Get a default number when a number is a non-number, a NaN or out of range.
$ npm i default-number --save
Load this module :
const defaultNumber = require('default-number')
Return the default number when the value is undefined or null.
defaultNumber(undefined, 123) // => 123
defaultNumber(null, 123) // => 123
Return the default number when the value is NaN.
defaultNumber(NaN, 123) // => 123
defaultNumber(Infinity, 123) // => Infinity
Return the limited number when minValue and/or maxValue is specified.
defaultNumber(-100, 123, -50) // => -50
defaultNumber(1000, 123, -50, 200) // => 200
defaultNumber(1000, 123, null, 200) // => 200
And return the value when it is valid and in range.
defaultNumber(-10, 123) // => -10
defaultNumber(-10, 123, -50, 200) // => -10
defaultNumber(100, 123, null, 200) // => 100
Returns the second argument when the first argument is non-number or NaN
.
When the third and/or fourth argument are specified, the returned value is limited in range.
Arguments:
Return [any] : value if it is a number and in range, defValue if value is non-number and defValue is in range, minValue if value/defValue is less minValue, or maxValue if value/defValue is greater than maxValue.
Copyright (C) 2017 Takayuki Sato
This program is free software under MIT License. See the file LICENSE in this distribution for more details.
FAQs
Get a default number when a number is a non-number, a NaN or out of range.
The npm package default-number receives a total of 421 weekly downloads. As such, default-number popularity was classified as not popular.
We found that default-number demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.