Skip to content

Instantly share code, notes, and snippets.

@akbarsahata
Created August 16, 2017 00:20
Show Gist options
  • Save akbarsahata/3b6fc5c385811c6a9edc27f248a8f8ff to your computer and use it in GitHub Desktop.
Save akbarsahata/3b6fc5c385811c6a9edc27f248a8f8ff to your computer and use it in GitHub Desktop.
isKTP
// letakkan function ini sebagai helper
module.exports = function isKTP(string) {
let ktp = /\d+-\d+-\d+/;
return ktp.test(string);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment