Skip to content

Instantly share code, notes, and snippets.

View REXY4's full-sized avatar
:octocat:
Working from home

M.RIZKI I REXY4

:octocat:
Working from home
View GitHub Profile
@yudapc
yudapc / Javascript Format NPWP
Last active September 10, 2025 10:16
Javascript Format NPWP. NPWP is ID tax each people of indonesian. Specificly in frontend need to format NPWP before render to user
//
// Javascript Format NPWP
//
function formatNpwp(value) {
if (typeof value === 'string') {
return value.replace(/(\d{2})(\d{3})(\d{3})(\d{1})(\d{3})(\d{3})/, '$1.$2.$3.$4-$5.$6');
}
}