added employer list and signatory API

This commit was merged in pull request #25.
This commit is contained in:
victorAnumudu
2024-06-06 17:15:12 +01:00
parent 19198b09ba
commit 50b12f2da4
47 changed files with 2320 additions and 37 deletions
+6
View File
@@ -0,0 +1,6 @@
export const formatNumbers = (number: string | undefined): string | null => {
if(!number){
return null
}
return number.replace(/\B(?=(\d{3})+(?!\d))/g, ',');
};