ng-decorator

1.1.2 • Public • Published

ng-decorator

Brings syntactic sugar from Angular 1.4 to previous versions. Makes legacy application optimistic and future-proof.

angular.module('app').config(['$provide', function ($provide) {
	$provide.decorator('service', ['$delegate', function ($delegate) {
		// ...
	}]);
}]);

becomes

angular.module('app').decorator('service', ['$delegate', function ($delegate) {
	// ...
}]);

Install

NPM

npm install --save ng-decorator

Bower

bower install --save ng-decorator

Usage

ng-decorator.js is loaded after angular.js and before Angular modules.

Dependents (0)

Package Sidebar

Install

npm i ng-decorator

Weekly Downloads

0

Version

1.1.2

License

MIT

Last publish

Collaborators

  • ex-machine