Skip to content

Repository with a set of handy (and not so much) data structures to be used with js

License

Notifications You must be signed in to change notification settings

davidalencia/estructuras

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Estructuras

Repository with a set of handy (and not so much) data structures to be used with node js.

CHECK THE DOCUMENTATION

Install

npm install --save estructuras

Usage

Check out this example.

Or check out the documentation. We do have documentation.

const List = require('estructuras').List;

let l  = new List();

l.add("hola");
l.add(2);
l.add(3);
l.add(4);

l.remove(3);

l.forEach((x)=>{
  //Do something
  console.log(x);
})

About

Repository with a set of handy (and not so much) data structures to be used with js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published