1.0.0 • Published 9 years ago

angular-fqueue v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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) {
  // ...
});