dustinspecker/generator-ng-poly

View on GitHub
lib/constant/templates/_constant.js

Summary

Maintainability
A
0 mins
Test Coverage
(function () {
  'use strict';

  /**
   * @ngdoc service
   * @name <% if (parentModuleName) { %><%= parentModuleName %>.<% } %><%= moduleName %>.constant:<%= lowerCamel %>
   *
   * @description
   *
   */
  angular
    .module('<% if (parentModuleName) { %><%= parentModuleName %>.<% } %><%= moduleName %>')
    .constant('<%= lowerCamel %>', 0);
}());