@extra-array/remove-path-update
Version:
Removes value at path in a nested array.
11 lines (10 loc) • 296 B
TypeScript
declare module "@extra-array/remove-path-update" {
/**
* Removes value at path in a nested array.
* @param x a nested array (updated)
* @param p path
* @returns x
*/
declare function removePath$(x: any[], p: number[]): any[];
export = removePath$;
//# sourceMappingURL=removePath$.d.ts.map}