angular-fqueue
v1.0.0
Published
Fixed size Array (Fixed Queue) for AngularJS
Downloads
9
Maintainers
Readme
angular-fqueue
Javascript implementation of Array with fixed size (Fixed Queue) for AngularJS The implementation is based on Ben Nadel's Gist
Installation
Bower
bower install angular-fqueue
NPM
npm install angular-fqueue
Dependencies
FixedQueue depends on Angular only.
Usage
Add 'fqueue' as a dependency to your app and inject FixedQueue into your controller or service.
angular.module('myApp', ['fqueue']);
angular.module('myApp').controller('MyController', function($scope, FixedQueue) {
// ...
});