lakutata
Version:
An IoC-based universal application framework.
16 lines (14 loc) • 392 B
JavaScript
/* Build Date: Mon Jan 05 2026 23:52:23 GMT+0800 (China Standard Time) */
function e(o, t = "") {
const c = [];
Object.keys(o).forEach(s => {
const f = t ? `${t}.${s}` : s;
if (typeof o[s] === "object") {
e(o[s], f).forEach(e => c.push(e));
} else {
c.push(f);
}
});
return c;
}
export { e as GetObjectPropertyPaths };