UNPKG

@cookbook/dot-notation

Version:

Object readings and complex transformations using dot notation syntax.

8 lines (7 loc) 212 B
/** * Shallow copy * @description Create a copy of a original collection with same structure. * @param value */ declare const shallowCopy: <T>(value: T) => T extends [] ? T[] : T; export default shallowCopy;