File

src/util/object.util.ts

Index

Methods

Methods

Static isJSON
isJSON(input)
Parameters :
Name Optional
input No
Returns : boolean
export class ObjectUtil {

    public static isJSON(input): boolean {
        try {
            JSON.parse(input);
            return true;
        } catch (e) {
            return false;
        }
    }
}

results matching ""

    No results matching ""