source:
node_modules/es-toolkit/dist/compat/util/defaultTo.mjs
| Last change on this file was a762898, checked in by , 5 months ago | |
|---|---|
|
|
| File size: 168 bytes | |
| Rev | Line | |
|---|---|---|
| [a762898] | 1 | function defaultTo(value, defaultValue) { |
| 2 | if (value == null || Number.isNaN(value)) { | |
| 3 | return defaultValue; | |
| 4 | } | |
| 5 | return value; | |
| 6 | } | |
| 7 | ||
| 8 | export { defaultTo }; |
Note:
See TracBrowser
for help on using the repository browser.
