source:
node_modules/es-toolkit/dist/compat/util/defaultTo.mjs@
ba17441
| Last change on this file since ba17441 was a762898, checked in by , 5 months ago | |
|---|---|
|
|
| File size: 168 bytes | |
| Line | |
|---|---|
| 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.
