UNPKG

@sovgut/allocate

Version:

<p align="center"> <b>A lightweight TypeScript utility for transforming object and array structures by remapping keys according to a schema. Perfect for API response transformation, data migration, and object restructuring.</b> </p>

4 lines (3 loc) 224 B
export declare function getValueByPath(obj: any, path: string): any; export declare function setValueByPath(obj: any, path: string, value: any): void; export declare function deleteValueByPath(obj: any, path: string): void;