New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

data-structures-nodejs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-structures-nodejs

Welcome to data-structures-nodejs 👋

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

Welcome to data-structures-nodejs 👋

Version Documentation Maintenance License: MIT

vary data structures implements by nodejs

.
├── queue
│   ├── array_queue.js
│   └── linked_queue.js
├── stack
│   ├── array_stack.js
│   └── linked_stack.js
└── tree
    └── tree.js

Install

npm i data-structures-nodejs

Example

const { Queue } = require('data-structures-nodejs')
const queue = new Queue()
queue.enqueue(1)
queue.enqueue(2)
queue.dequeue() // 1
queue.dequeue() // 2

Author

👤 selenium39

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2022 selenium39.
This project is MIT licensed.

This README was generated with ❤️ by readme-md-generator

FAQs

Package last updated on 28 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts