Function isJSON

  • 检查字符串是否为有效的 JSON

    Parameters

    • str: any

      字符串

    Returns boolean

    isJSON('{"name":"leo", "age":20}'); /// true
    isJSON('{"name":"leo", age:"20"}'); /// false
    isJSON(null); /// true