normalizeArguments.js 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. 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; }
  2. 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; }
  3. 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; }
  4. function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
  5. 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."); }
  6. 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); }
  7. 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; }
  8. 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; }
  9. function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
  10. import isObject from './helpers/isObject.js'; // Extracts the following properties from function arguments:
  11. // * input `text`
  12. // * `options` object
  13. // * `metadata` JSON
  14. export default function normalizeArguments(args) {
  15. var _Array$prototype$slic = Array.prototype.slice.call(args),
  16. _Array$prototype$slic2 = _slicedToArray(_Array$prototype$slic, 4),
  17. arg_1 = _Array$prototype$slic2[0],
  18. arg_2 = _Array$prototype$slic2[1],
  19. arg_3 = _Array$prototype$slic2[2],
  20. arg_4 = _Array$prototype$slic2[3];
  21. var text;
  22. var options;
  23. var metadata; // If the phone number is passed as a string.
  24. // `parsePhoneNumber('88005553535', ...)`.
  25. if (typeof arg_1 === 'string') {
  26. text = arg_1;
  27. } else throw new TypeError('A text for parsing must be a string.'); // If "default country" argument is being passed then move it to `options`.
  28. // `parsePhoneNumber('88005553535', 'RU', [options], metadata)`.
  29. if (!arg_2 || typeof arg_2 === 'string') {
  30. if (arg_4) {
  31. options = arg_3;
  32. metadata = arg_4;
  33. } else {
  34. options = undefined;
  35. metadata = arg_3;
  36. }
  37. if (arg_2) {
  38. options = _objectSpread({
  39. defaultCountry: arg_2
  40. }, options);
  41. }
  42. } // `defaultCountry` is not passed.
  43. // Example: `parsePhoneNumber('+78005553535', [options], metadata)`.
  44. else if (isObject(arg_2)) {
  45. if (arg_3) {
  46. options = arg_2;
  47. metadata = arg_3;
  48. } else {
  49. metadata = arg_2;
  50. }
  51. } else throw new Error("Invalid second argument: ".concat(arg_2));
  52. return {
  53. text: text,
  54. options: options,
  55. metadata: metadata
  56. };
  57. }
  58. //# sourceMappingURL=normalizeArguments.js.map