1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
- function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
- function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure 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; }
- function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
- function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
- import isObject from './helpers/isObject.js'; // Extracts the following properties from function arguments:
- // * input `text`
- // * `options` object
- // * `metadata` JSON
- export default function normalizeArguments(args) {
- var _Array$prototype$slic = Array.prototype.slice.call(args),
- _Array$prototype$slic2 = _slicedToArray(_Array$prototype$slic, 4),
- arg_1 = _Array$prototype$slic2[0],
- arg_2 = _Array$prototype$slic2[1],
- arg_3 = _Array$prototype$slic2[2],
- arg_4 = _Array$prototype$slic2[3];
- var text;
- var options;
- var metadata; // If the phone number is passed as a string.
- // `parsePhoneNumber('88005553535', ...)`.
- if (typeof arg_1 === 'string') {
- text = arg_1;
- } else throw new TypeError('A text for parsing must be a string.'); // If "default country" argument is being passed then move it to `options`.
- // `parsePhoneNumber('88005553535', 'RU', [options], metadata)`.
- if (!arg_2 || typeof arg_2 === 'string') {
- if (arg_4) {
- options = arg_3;
- metadata = arg_4;
- } else {
- options = undefined;
- metadata = arg_3;
- }
- if (arg_2) {
- options = _objectSpread({
- defaultCountry: arg_2
- }, options);
- }
- } // `defaultCountry` is not passed.
- // Example: `parsePhoneNumber('+78005553535', [options], metadata)`.
- else if (isObject(arg_2)) {
- if (arg_3) {
- options = arg_2;
- metadata = arg_3;
- } else {
- metadata = arg_2;
- }
- } else throw new Error("Invalid second argument: ".concat(arg_2));
- return {
- text: text,
- options: options,
- metadata: metadata
- };
- }
- //# sourceMappingURL=normalizeArguments.js.map
|