Skip to content

Instantly share code, notes, and snippets.

@alexalannunes
Created September 13, 2021 20:46
Show Gist options
  • Select an option

  • Save alexalannunes/d62279f4565bdab94616be0e8018c32e to your computer and use it in GitHub Desktop.

Select an option

Save alexalannunes/d62279f4565bdab94616be0e8018c32e to your computer and use it in GitHub Desktop.
function mask(value, pattern) {
let i = 0;
return pattern.replace(/#/g, () => value[i++]||'');
}
mask('08111998', '##/##/####');
// '08/11/1998'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment