This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/compat/object/valuesIn.mjs
T

14 lines
299 B
JavaScript

import { keysIn } from './keysIn.mjs';
function valuesIn(object) {
const keys = keysIn(object);
const result = new Array(keys.length);
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
result[i] = object[key];
}
return result;
}
export { valuesIn };