Skip to content

Instantly share code, notes, and snippets.

@ukyo
Last active August 29, 2015 14:00
Show Gist options
  • Save ukyo/11364087 to your computer and use it in GitHub Desktop.
Save ukyo/11364087 to your computer and use it in GitHub Desktop.
zerofill for angular filter
<div>{{hoge | zerofill:2}}</div>
angular.module('foo', [])
.filter 'zerofill', ->
#これだけあれば足りるだろ的なアレ
(n, length) -> "000000000000000000000000000000000#{n}".slice(-Math.max("#{n}".length, length))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment