UNPKG

gherkin

Version:
9 lines 345 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // https://mathiasbynens.be/notes/javascript-unicode var regexAstralSymbols = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g; function countSymbols(s) { return s.replace(regexAstralSymbols, '_').length; } exports.default = countSymbols; //# sourceMappingURL=countSymbols.js.map