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

8 lines
124 B
JavaScript
Raw Normal View History

export function extractValues(obj) {
const t = [];
2019-12-05 15:58:11 +05:00
for (let key in obj) {
t[t.length] = obj[key];
}
return t;
}