enhancementgood first issuehelp wanted
Metriche repository
- Star
- (5 star)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
What utility would you like to add?
Add a deepClone() function to create deep copies of objects.
Example usage:
import { deepClone } from './src/objects.js';
const original = { a: 1, b: { c: 2 } };
const copy = deepClone(original);
copy.b.c = 999;
console.log(original.b.c); // Still 2