69 lines
2.9 KiB
JavaScript
69 lines
2.9 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports["default"] = findPhoneNumbersInText;
|
|
exports.getArguments = getArguments;
|
|
|
|
var _findNumbers = _interopRequireDefault(require("./findNumbers.js"));
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
|
|
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
|
|
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 findPhoneNumbersInText(text, defaultCountry, options, metadata) {
|
|
var args = getArguments(defaultCountry, options, metadata);
|
|
return (0, _findNumbers["default"])(text, args.options, args.metadata);
|
|
}
|
|
|
|
function getArguments(defaultCountry, options, metadata) {
|
|
if (metadata) {
|
|
if (defaultCountry) {
|
|
options = _objectSpread(_objectSpread({}, options), {}, {
|
|
defaultCountry: defaultCountry
|
|
});
|
|
}
|
|
} else {
|
|
if (options) {
|
|
metadata = options;
|
|
|
|
if (defaultCountry) {
|
|
if (is_object(defaultCountry)) {
|
|
options = defaultCountry;
|
|
} else {
|
|
options = {
|
|
defaultCountry: defaultCountry
|
|
};
|
|
}
|
|
} else {
|
|
options = undefined;
|
|
}
|
|
} else {
|
|
metadata = defaultCountry;
|
|
options = undefined;
|
|
}
|
|
}
|
|
|
|
return {
|
|
options: _objectSpread(_objectSpread({}, options), {}, {
|
|
v2: true
|
|
}),
|
|
metadata: metadata
|
|
};
|
|
} // Babel transforms `typeof` into some "branches"
|
|
// so istanbul will show this as "branch not covered".
|
|
|
|
/* istanbul ignore next */
|
|
|
|
|
|
var is_object = function is_object(_) {
|
|
return _typeof(_) === 'object';
|
|
};
|
|
//# sourceMappingURL=findPhoneNumbersInText.js.map
|