Created
January 7, 2016 14:14
-
-
Save hkwid/7fcb25c1070428507835 to your computer and use it in GitHub Desktop.
leftpadFilter.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| angular.module('app') | |
| .filter('leftpad', function () { | |
| return function (input, length) { | |
| return ('00000000000000000000' + String(input)).slice(-length); | |
| }; | |
| }); |
Author
hkwid
commented
Jan 7, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment