UNPKG

@leronixlabs/nanite

Version:

Base64 String to JSON converter.

7 lines (5 loc) 382 B
declare function ReturnAsJsonObject(Input: string): any; declare function IsValidJSON(Input: string): boolean; declare function GetSpecificChildValueFromJSON(Input: string, Target: string): any | undefined; declare function GetValueTypeFromChild(Input: string, Target: string): any; export { GetSpecificChildValueFromJSON, GetValueTypeFromChild, IsValidJSON, ReturnAsJsonObject };