Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. var showLog = true;
  2. (function() {
  3. 'use strict';
  4.  
  5. angular
  6. .module('moduleName')
  7. .factory('cLog', cLog);
  8.  
  9. cLog.$inject = [];
  10.  
  11. function cLog() {
  12. return {
  13. log: log
  14. };
  15.  
  16. function log(str) {
  17. if(showLog)
  18. console.log(str);
  19. }
  20. }
  21.  
  22. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement