Skip to content

Instantly share code, notes, and snippets.

@1fabiopereira
Last active October 28, 2016 16:37
Show Gist options
  • Save 1fabiopereira/f7298af00be78f097b2f55cfd1eb48b2 to your computer and use it in GitHub Desktop.
Save 1fabiopereira/f7298af00be78f097b2f55cfd1eb48b2 to your computer and use it in GitHub Desktop.
/*
* Módulo Nodejs para formatar CPF
*/
'use strict';
module.exports = cpf => {
const _format = value => {
return value.substring(0, 3) + '.' +
value.substring(3, 6) + '.' +
value.substring(6, 9) + '-' +
value.substring(9, 11);
};
return cpf.length === 11 ? _format(cpf) : cpf;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment