6c5a5256c7
Switch SVG optimizer resolution from bin/svgo-cli.exe to bin/svgo.cmd. Update unit tests to validate the new local binary path behavior. Co-Authored-By: Abacus.AI CLI <agent@abacus.ai>
26 lines
506 B
JavaScript
26 lines
506 B
JavaScript
'use strict';
|
|
|
|
const List = require('./List.cjs');
|
|
|
|
function clone(node) {
|
|
const result = {};
|
|
|
|
for (const key of Object.keys(node)) {
|
|
let value = node[key];
|
|
|
|
if (value) {
|
|
if (Array.isArray(value) || value instanceof List.List) {
|
|
value = value.map(clone);
|
|
} else if (value.constructor === Object) {
|
|
value = clone(value);
|
|
}
|
|
}
|
|
|
|
result[key] = value;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
exports.clone = clone;
|