backend v4 half

This commit is contained in:
2025-07-18 09:20:40 +02:00
parent aba7a506ad
commit 725516ad6c
4183 changed files with 217684 additions and 75056 deletions
@@ -0,0 +1,20 @@
import extractCountryCallingCode from './extractCountryCallingCode.js'
import metadata from '../../metadata.min.json' assert { type: 'json' }
describe('extractCountryCallingCode', () => {
it('should extract country calling code from a number', () => {
extractCountryCallingCode('+78005553535', null, null, metadata).should.deep.equal({
countryCallingCodeSource: 'FROM_NUMBER_WITH_PLUS_SIGN',
countryCallingCode: '7',
number: '8005553535'
})
extractCountryCallingCode('+7800', null, null, metadata).should.deep.equal({
countryCallingCodeSource: 'FROM_NUMBER_WITH_PLUS_SIGN',
countryCallingCode: '7',
number: '800'
})
extractCountryCallingCode('', null, null, metadata).should.deep.equal({})
})
})