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