Skip to content

Instantly share code, notes, and snippets.

@hkwid
Created January 7, 2016 14:14
Show Gist options
  • Select an option

  • Save hkwid/7fcb25c1070428507835 to your computer and use it in GitHub Desktop.

Select an option

Save hkwid/7fcb25c1070428507835 to your computer and use it in GitHub Desktop.
leftpadFilter.js
angular.module('app')
.filter('leftpad', function () {
return function (input, length) {
return ('00000000000000000000' + String(input)).slice(-length);
};
});
@hkwid
Copy link
Copy Markdown
Author

hkwid commented Jan 7, 2016

{{5 | leftpad:4}}

// results
'0005'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment