pixie-transformer
Version:
Pixie Transformer is transforming a Raw/Response JSON Payload into your expected JSON Payload. It's make your life easy and convenience without any logic required in your code.
6 lines (5 loc) • 323 B
TypeScript
declare function asArray(input: any): any;
declare function isNumber(str: any): boolean;
declare function replaceAll(formula: string, search: string, replacement: any): string;
declare function deepClone(obj: any): any;
export { asArray as AsArray, replaceAll as ReplaceAll, isNumber as IsNumber, deepClone as DeepClone };