joaocarmo / vcard-creator

A JavaScript vCard creator library for both Node.js and the web
MIT License
38 stars 13 forks source link

Issue with phone numbers starting with 0 #43

Open axmusic opened 1 year ago

axmusic commented 1 year ago

Trying to Add phone numbers starting with 0, like 0749862145

But it is not working, It is skipping 0

Using the latest version 0.6.0

joaocarmo commented 11 months ago

@axmusic are you adding 0749862145 as a number type or as a string? number decimals cannot start with a leading 0 so it gets removed automatically by the JavaScript engine. Did you try to pass it as a string? It should work that way. As you can see from the tests:

https://github.com/joaocarmo/vcard-creator/blob/33da4bf422c98a7528aa67431ef39957e82c1c95/lib/VCard.test.ts#L173