
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
default-val
Advanced tools
Get a default value when a value is nullish or invalid type
$ npm i default-val --save
Load this mudule :
const defaultValue = require('default-val');
Return the default value when the value is undefined or null :
defaultValue(undefined, true) // => true
defaultValue(null, 123) // => 123
Return the default value when the value is NaN :
defaultValue(NaN, 123) // => 123
defaultValue(Infinity, 123) // => Infinity
Return the default value when the type of the value is invalid :
defaultValue(987, true) // => true
defaultValue(987, 'ABC', 'string') // => 'ABC'
defaultValue(987, 'ABC', '[object String]') // => 'ABC'
defaultValue(987, 123, '[object String]') // => 123
defaultValue(987, new Date(0), '[object Date]') // => new Date(0)
And return the value when it is valid :
defaultValue(987, 0) // => 987
defaultValue(987, 123, 'number') // => 987
defaultValue(987, null, 'number') // => 987
defaultValue(987, 'ABC', '[object Number]') // => 987
Returns the second argument when the first argument is null, undefined or NaN, or the type of the first argument is different from the type of the second argument.
When the third argument is specified, returns the second argument if the type of the first argument is different from the type represented by the third argument.
The third argument can be specified the result of typeof x or Object.prototype.toString.call(x).
Arguments:
Return [any] : value if value is valid, otherwise defValue.
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 value when a value is nullish or invalid type
The npm package default-val receives a total of 57 weekly downloads. As such, default-val popularity was classified as not popular.
We found that default-val 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.