lecoffre-back/node_modules/libphonenumber-js/source/helpers/applyInternationalSeparatorStyle.test.js
2023-02-17 11:06:01 +01:00

8 lines
373 B
JavaScript

import applyInternationalSeparatorStyle from './applyInternationalSeparatorStyle.js'
describe('applyInternationalSeparatorStyle', () => {
it('should change Google\'s international format style', () => {
applyInternationalSeparatorStyle('(xxx) xxx-xx-xx').should.equal('xxx xxx xx xx')
applyInternationalSeparatorStyle('(xxx)xxx').should.equal('xxx xxx')
})
})