normalizeArguments.js 4.4 KB

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