Skip to content

Instantly share code, notes, and snippets.

@theuves
Last active January 6, 2018 04:22
Show Gist options
  • Select an option

  • Save theuves/331a19d7b6e507ea44bfc0009a71a8be to your computer and use it in GitHub Desktop.

Select an option

Save theuves/331a19d7b6e507ea44bfc0009a71a8be to your computer and use it in GitHub Desktop.
(function (angular) {
"use strict";
angular
.module("preencher", [])
.filter("preencher", preencher);
function () {
return function (str, pad) {
return str
.toString()
.padStart(pad, "0");
};
}
})(window.angular);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment