HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/api-parametros/node_modules/libphonenumber-js/es6/PhoneNumberMatcher.test.js
import PhoneNumberMatcher from './PhoneNumberMatcher.js';
import metadata from '../metadata.min.json' assert { type: 'json' };

function test(text, defaultCountry, expectedNumbers) {
  if (typeof expectedNumbers === 'string') {
    expectedNumbers = [{
      nationalNumber: expectedNumbers
    }];
  }

  var matcher = new PhoneNumberMatcher(text, {
    defaultCountry: defaultCountry,
    v2: true
  }, metadata);

  while (matcher.hasNext()) {
    var number = matcher.next();
    var phoneNumber = expectedNumbers.shift();

    if (phoneNumber.startsAt !== undefined) {
      number.startsAt.should.equal(phoneNumber.startsAt);
    }

    if (phoneNumber.endsAt !== undefined) {
      number.endsAt.should.equal(phoneNumber.endsAt);
    }

    number.number.country.should.equal(phoneNumber.country || defaultCountry);
    number.number.nationalNumber.should.equal(phoneNumber.nationalNumber);
  }

  expectedNumbers.length.should.equal(0);
}

describe('PhoneNumberMatcher', function () {
  it('should find phone numbers', function () {
    test('The number is +7 (800) 555-35-35 and not (213) 373-4253 as written in the document.', 'US', [{
      country: 'RU',
      nationalNumber: '8005553535',
      startsAt: 14,
      endsAt: 32
    }, {
      country: 'US',
      nationalNumber: '2133734253',
      startsAt: 41,
      endsAt: 55
    }]);
  });
  it('should find phone numbers from Mexico', function () {
    // Test parsing fixed-line numbers of Mexico.
    test('+52 (449)978-0001', 'MX', '4499780001');
    test('01 (449)978-0001', 'MX', '4499780001');
    test('(449)978-0001', 'MX', '4499780001'); // "Dialling tokens 01, 02, 044, 045 and 1 are removed as they are
    //  no longer valid since August 2019."
    // // Test parsing mobile numbers of Mexico.
    // test('+52 1 33 1234-5678', 'MX', '3312345678')
    // test('044 (33) 1234-5678', 'MX', '3312345678')
    // test('045 33 1234-5678', 'MX', '3312345678')
  });
  it('should find phone numbers from Argentina', function () {
    // Test parsing mobile numbers of Argentina.
    test('+54 9 343 555 1212', 'AR', '93435551212');
    test('0343 15-555-1212', 'AR', '93435551212');
    test('+54 9 3715 65 4320', 'AR', '93715654320');
    test('03715 15 65 4320', 'AR', '93715654320'); // Test parsing fixed-line numbers of Argentina.

    test('+54 11 3797 0000', 'AR', '1137970000');
    test('011 3797 0000', 'AR', '1137970000');
    test('+54 3715 65 4321', 'AR', '3715654321');
    test('03715 65 4321', 'AR', '3715654321');
    test('+54 23 1234 0000', 'AR', '2312340000');
    test('023 1234 0000', 'AR', '2312340000');
  });
  it('should only support the supported leniency values', function () {
    expect(function () {
      return new PhoneNumberMatcher('+54 23 1234 0000', {
        leniency: 'STRICT_GROUPING',
        v2: true
      }, metadata);
    }).to["throw"]('Supported values: "POSSIBLE", "VALID".');
  });
});
//# sourceMappingURL=PhoneNumberMatcher.test.js.map