UNPKG

jtc-utils

Version:
13 lines 326 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isUnicodeBMP = isUnicodeBMP; function isUnicodeBMP(value) { if (value == null) { return false; } if (/[\uD800-\uDFFF]/.test(value)) { return false; } return true; } //# sourceMappingURL=isUnicodeBMP.js.map