0.0.1 • Published 10 years ago

asteroids-bag v0.0.1

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

asteroids-bag Build Status

An implementation of a bag tailored to Asteroids

Examples

var Bag = require('asteroids-bag');

var bag = new Bag();
var identifier = bag.add({ 'an': 'object' });

bag.forEach(function(element, id){
    console.log('we found an element with id: %s', id);
    console.log(element);
})

bag.remove(identifier);
bag.forEach(function(){
    console.log('this will not show because bag is empty');
});

Output:

we found an element with id: f624a2c94c204058b9689687d1868a22
{ an: 'object' }
0.0.1

10 years ago

0.0.0

10 years ago