Skip to content

Instantly share code, notes, and snippets.

@Bigismall
Last active June 25, 2021 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bigismall/abd382e1ee627c85dcb287220aeab363 to your computer and use it in GitHub Desktop.
Save Bigismall/abd382e1ee627c85dcb287220aeab363 to your computer and use it in GitHub Desktop.
format number value
CAPP.util.IntegerNumberFormat = (function () {
return function (value) {
return String(value).replace(/(.)(?=(\d{3})+$)/g, "$1 ");
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment