UNPKG

sussy-util

Version:
8 lines (7 loc) 129 B
/** * Recursively clones an object or array. * * @template T */ declare const clone: <V>(obj: V) => V; export default clone;