source: node_modules/es-toolkit/dist/compat/object/values.mjs

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 133 bytes
Line 
1function values(object) {
2 if (object == null) {
3 return [];
4 }
5 return Object.values(object);
6}
7
8export { values };
Note: See TracBrowser for help on using the repository browser.