Files
notesnook/packages/core/utils/index.js

8 lines
124 B
JavaScript
Raw Normal View History

export function extractValues(obj) {
const t = [];
for (var key in obj) {
t[t.length] = obj[key];
}
return t;
}