Skip to content
Snippets Groups Projects
Commit 2db3700c authored by insert's avatar insert
Browse files

Update bottom.json.

parent b01c45c8
Branches
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -8,6 +8,7 @@ const data = JSON.parse(text);
function recurse(obj: { [key: string]: any }) {
for (let key of Object.keys(obj)) {
if (key === 'dayjs') return;
if (typeof obj[key] === 'object') {
recurse(obj[key]);
} else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment