UNPKG

generator-angular-blueprint

Version:

Yeoman angular generator that allows you to override global templates with your own!

25 lines (18 loc) 309 B
'use strict'; /** * @ngdoc filter * * @name <%= cameledName %> * * @description * Filter for <%= appName %> */ (function () { angular .module('<%= appName %>') .filter('<%= cameledName %>', <%= cameledName %>); function <%= cameledName %>() { return function () { } } })();