/home/techb158/balavpn.abdallabala.com/node_modules/ajv/lib/compile
NameSizeModeActions
async.js26440666editdlrm
equal.js1760666editdlrm
error_classes.js8280666editdlrm
formats.js121020666editdlrm
index.js108070666editdlrm
resolve.js78470666editdlrm
rules.js20210666editdlrm
schema_obj.js1330666editdlrm
ucs2length.js5580666editdlrm
util.js69740666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/ajv/lib/compile/ucs2length.js (558B)
'use strict'; // https://mathiasbynens.be/notes/javascript-encoding // https://github.com/bestiejs/punycode.js - punycode.ucs2.decode module.exports = function ucs2length(str) { var length = 0 , len = str.length , pos = 0 , value; while (pos < len) { length++; value = str.charCodeAt(pos++); if (value >= 0xD800 && value <= 0xDBFF && pos < len) { // high surrogate, and there is a next character value = str.charCodeAt(pos); if ((value & 0xFC00) == 0xDC00) pos++; // low surrogate } } return length; };