UNPKG

libphonenumber-js

Version:

A simpler (and smaller) rewrite of Google Android's libphonenumber library in javascript

122 lines (97 loc) 4.75 kB
function _createForOfIteratorHelperLoose(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (it) return (it = it.call(o)).next.bind(it); if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; return function () { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } // Should be the same as `DIGIT_PLACEHOLDER` in `libphonenumber-metadata-generator`. export var DIGIT_PLACEHOLDER = 'x'; // '\u2008' (punctuation space) var DIGIT_PLACEHOLDER_MATCHER = new RegExp(DIGIT_PLACEHOLDER); // Counts all occurences of a symbol in a string. // Unicode-unsafe (because using `.split()`). export function countOccurences(symbol, string) { var count = 0; // Using `.split('')` to iterate through a string here // to avoid requiring `Symbol.iterator` polyfill. // `.split('')` is generally not safe for Unicode, // but in this particular case for counting brackets it is safe. // for (const character of string) for (var _iterator = _createForOfIteratorHelperLoose(string.split('')), _step; !(_step = _iterator()).done;) { var character = _step.value; if (character === symbol) { count++; } } return count; } // Repeats a string (or a symbol) N times. // http://stackoverflow.com/questions/202605/repeat-string-javascript export function repeat(string, times) { if (times < 1) { return ''; } var result = ''; while (times > 1) { if (times & 1) { result += string; } times >>= 1; string += string; } return result + string; } export function cutAndStripNonPairedParens(string, cutBeforeIndex) { if (string[cutBeforeIndex] === ')') { cutBeforeIndex++; } return stripNonPairedParens(string.slice(0, cutBeforeIndex)); } export function closeNonPairedParens(template, cut_before) { var retained_template = template.slice(0, cut_before); var opening_braces = countOccurences('(', retained_template); var closing_braces = countOccurences(')', retained_template); var dangling_braces = opening_braces - closing_braces; while (dangling_braces > 0 && cut_before < template.length) { if (template[cut_before] === ')') { dangling_braces--; } cut_before++; } return template.slice(0, cut_before); } export function stripNonPairedParens(string) { var dangling_braces = []; var i = 0; while (i < string.length) { if (string[i] === '(') { dangling_braces.push(i); } else if (string[i] === ')') { dangling_braces.pop(); } i++; } var start = 0; var cleared_string = ''; dangling_braces.push(string.length); for (var _i = 0, _dangling_braces = dangling_braces; _i < _dangling_braces.length; _i++) { var index = _dangling_braces[_i]; cleared_string += string.slice(start, index); start = index + 1; } return cleared_string; } export function populateTemplateWithDigits(template, position, digits) { // Using `.split('')` to iterate through a string here // to avoid requiring `Symbol.iterator` polyfill. // `.split('')` is generally not safe for Unicode, // but in this particular case for `digits` it is safe. // for (const digit of digits) for (var _iterator2 = _createForOfIteratorHelperLoose(digits.split('')), _step2; !(_step2 = _iterator2()).done;) { var digit = _step2.value; // If there is room for more digits in current `template`, // then set the next digit in the `template`, // and return the formatted digits so far. // If more digits are entered than the current format could handle. if (template.slice(position + 1).search(DIGIT_PLACEHOLDER_MATCHER) < 0) { return; } position = template.search(DIGIT_PLACEHOLDER_MATCHER); template = template.replace(DIGIT_PLACEHOLDER_MATCHER, digit); } return [template, position]; } //# sourceMappingURL=AsYouTypeFormatter.util.js.map