UNPKG

sketch-json-parse

Version:

sketch-json解析

15 lines (14 loc) 314 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isNotUndefined = void 0; const isNotUndefined = (data) => { try { if (data !== undefined) { return true; } } catch (e) { } return false; }; exports.isNotUndefined = isNotUndefined;