UNPKG

project-libs

Version:

project-libs 是一个常用函数集锦的工具库,包括浏览器、函数式、常用验证、cookie、数组处理等函数。

18 lines (17 loc) 345 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isJsonString; /** * 验证是否可以被JSON.parse * @param ele {any} 元素 * @returns {boolean} boolean */ function isJsonString(ele) { try { JSON.parse(ele); } catch (e) { return false; } return true; }