@jeremiah_tenbrink/stack
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Welcome to @jeremiah_tenbrink/stack 👋

Version Documentation Maintenance License: MIT

Discription

Javascript implementation of a stack.

Documentation

Read documentation here.

Install

Npm

npm install @jeremiah_tenbrink/stack

Yarn

yarn install @jeremiah_tenbrink/stack

Usage

import {Stack} from "@jeremiah_tenbrink/stack";

const stack = new Stack();
stack.push("some item")
stack.push("some item2")
stack.push("some item3")

while (!stack.isEmpty()){
  const current = stack.pop();
  console.log(current)
}

Run tests

npm run test

Author

👤 Jeremiah Tenbrink

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Jeremiah Tenbrink

This project is MIT licensed.


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

Readme

Keywords

none

Package Sidebar

Install

npm i @jeremiah_tenbrink/stack

Weekly Downloads

0

Version

1.0.0

License

none

Unpacked Size

198 kB

Total Files

29

Last publish

Collaborators

  • jeremiah_tenbrink