UNPKG

207 BPlain TextView Raw
1import type { PathArray, PathSegment } from '../types';
2
3export function clonePath(path: PathArray | PathSegment): PathArray {
4 return path.map((x) => (Array.isArray(x) ? [].concat(x) : x)) as PathArray;
5}