Skip to content

Instantly share code, notes, and snippets.

@fouad-j
Last active May 3, 2017 21:08
Show Gist options
  • Save fouad-j/6b81ce890a3f8bc36300f3355f3527d1 to your computer and use it in GitHub Desktop.
Save fouad-j/6b81ce890a3f8bc36300f3355f3527d1 to your computer and use it in GitHub Desktop.
example_angular_toggle_service_es6
angular.module('app').service('toggleService', function() {
const TOGGLE_LIST = ['TOGGLE_NAME_1', 'TOGGLE_NAME_2', 'TOGGLE_NAME_3'];
this.isEnable = toggleName => TOGGLE_LIST.includes(toggleName);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment