"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clonePath = clonePath; function clonePath(path) { return path.map(function (x) { return (Array.isArray(x) ? [].concat(x) : x); }); } //# sourceMappingURL=clone-path.js.map