mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-02 20:21:19 +02:00
56 lines
1.7 KiB
TypeScript
56 lines
1.7 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 Streetwriters (Private) Limited
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
export function flatten(object: { [name: string]: any }) {
|
|
const flattenedObject: { [name: string]: any } = {};
|
|
|
|
for (const innerObj in object) {
|
|
if (typeof object[innerObj] === "object") {
|
|
if (typeof object[innerObj] === "function") continue;
|
|
|
|
const newObject = flatten(object[innerObj]);
|
|
for (const key in newObject) {
|
|
flattenedObject[innerObj + "." + key] = newObject[key];
|
|
}
|
|
} else {
|
|
if (typeof object[innerObj] === "function") continue;
|
|
flattenedObject[innerObj] = object[innerObj];
|
|
}
|
|
}
|
|
return flattenedObject;
|
|
}
|
|
|
|
export function unflatten(data: any) {
|
|
const result = {};
|
|
for (const i in data) {
|
|
const keys = i.split(".");
|
|
keys.reduce(function (r: any, e, j) {
|
|
return (
|
|
r[e] ||
|
|
(r[e] = isNaN(Number(keys[j + 1]))
|
|
? keys.length - 1 == j
|
|
? data[i]
|
|
: {}
|
|
: [])
|
|
);
|
|
}, result);
|
|
}
|
|
return result;
|
|
}
|