Skip to content

Instantly share code, notes, and snippets.

@KenjiOhtsuka
Created June 18, 2024 02:58
Show Gist options
  • Save KenjiOhtsuka/ab528e570c8ad5664f209f7bea9eb3bd to your computer and use it in GitHub Desktop.
Save KenjiOhtsuka/ab528e570c8ad5664f209f7bea9eb3bd to your computer and use it in GitHub Desktop.
// Require `PhoneNumberFormat`.
const PNF = require('google-libphonenumber').PhoneNumberFormat;
// Get an instance of `PhoneNumberUtil`.
const phoneUtil = require('google-libphonenumber').PhoneNumberUtil.getInstance();
function test(text) {
// Parse number with country code and keep raw input.
let number = phoneUtil.parseAndKeepRawInput(text, 'JP');
console.log(phoneUtil.formatInOriginalFormat(number, 'JP'));
// Format number in the national format.
console.log(phoneUtil.format(number, PNF.NATIONAL));
}
test('0867250000')
test('0863670000')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment