
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
angular-jsvat
Advanced tools
Check the validity of the format of an EU VAT number. No dependencies(except angularjs of course).
Angular-js wrapper for jsvat (jsvat it's a core-logic for vat validation)
angular-jsvat is a small library to check validity of European (and few non-eu) VAT number. (learn more about VAT) jsvat use 2-step check (see below) and didn't make any request for external resources.
Each country has own regexp for VAT number and different math-logic of number calculating.
For more details check jsvat repo.
JsVatFactory
facatory (just an angularjs wrapper for jsvat)Just check is VAT number valid or not and which country this VAT is:
JsVatFactory.checkVAT('BG131134023'); // {isValid: true, country: 'bulgaria', value: 'BG131134023'}
JsVatFactory.checkVAT('BG0433170001'); //{isValid: false, country: null, value: 'BG0433170001'}
JsVatFactory.checkVAT('atu5-150-7409'); //{isValid: true, country: 'austria', value: 'ATU51507409'}
JsVatFactory.checkVAT('aTU 5 804 4146'); //{isValid: true, country: 'austria', value: 'ATU58044146'}
You can specify list of allowed countries
JsVatFactory.config = ['austria', 'belgium']; //All countries except 'austria' and 'belgium' would return false
JsVatFactory.checkVAT('BG131134023'); //valid VAT, but result would be 'false'
To reset config just do JsVatFactory.config = [];
jsvat
directive (for inputs).
Directive take a ngModel and return the result to the result object<input jsvat="result" type="text" ng-model="model">
bower i angular-jsvat --save
npm i angular-jsvat --save
https://github.com/se-panfilov/angular-jsvat/releases
After that, just include angular-jsvat
as a dependency
angular.module('app', ['angular-jsvat'])
(no dependencies required, angular-jsvat is standalone app)
It use jsvat core functionality:
There is 2-step check:
For example regexp for austria is /^(AT)U(\d{8})$/
.
Looks like ATU99999999
is valid (it's successfied the regexp), but actually it's should be invalid.
Here we make some mathematical calculation (different for each country).
After that we may be sure that ATU99999999
and for example ATV66889218
isn't valid, but ATU12011204
is valid.
Support all browsers down to IE9 (including IE9).
MIT: https://github.com/se-panfilov/jsvat/blob/master/LICENSE
This project is provided "as is", without warranty of any kind. The authors and contributors disclaim all liability for any damages arising from its use, inability to use, or performance. Users are responsible for ensuring compliance with applicable laws and regulations in their jurisdiction, including but not limited to:
For details, see the full DISCLAIMER.md file.
FAQs
Check the validity of the format of an EU VAT number specified
We found that angular-jsvat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.