![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@fabryscript/data-structures
Advanced tools
![GitHub license](https://img.shields.io/github/license/fabryscript/alchemical) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/fabryscript/alchemical) ![GitHub last commit](https://img.shields.io/github/last-commit/fabryscript/
A TypeScript library that provides a collection of simple data structures, designed to help you work with common data organization and manipulation tasks.
You can install this library via your package manager of choice:
npm install @fabryscript/data-structures
# or
yarn add @fabryscript/data-structures
# or
pnpm install @fabryscript/data-structures
# or
bun install @fabryscript/data-structures
import { Stack, Queue, HashTable } from '@fabryscript/data-structures';
// Create instances of data structures
const stack = new Stack();
const queue = new Queue();
const hashTable = new HashTable<number>();
// Use the data structures
stack.push(42);
queue.push('Hello, World!');
hashTable.add('John', 25);
A simple implementation of a stack data structure.
push(item: any)
: Pushes an item onto the stack.pop(): any | undefined
: Pops an item from the stack.peek(): any | undefined
: Retrieves the top item without removing it.isEmpty(): boolean
: Checks if the stack is empty.length(): number
: Returns the current length of the stack.A simple implementation of a queue data structure.
push(item: any)
: Adds an item to the back of the queue.pop(): any | undefined
: Removes an item from the front of the queue.peek(): any | undefined
: Retrieves the front item without removing it.isEmpty(): boolean
: Checks if the queue is empty.length(): number
: Returns the current length of the queue.A simple implementation of a hash table data structure.
add(key: string, data: T): void
: Adds data to the hash table.get(key: string): BucketData<T>[]
: Retrieves data associated with a key.delete(key: string): void
: Deletes data associated with a key.Contributions are welcome! If you have ideas for improvements or new features, please open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE.md file for details.
FAQs
![GitHub license](https://img.shields.io/github/license/fabryscript/alchemical) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/fabryscript/alchemical) ![GitHub last commit](https://img.shields.io/github/last-commit/fabryscript/
The npm package @fabryscript/data-structures receives a total of 4 weekly downloads. As such, @fabryscript/data-structures popularity was classified as not popular.
We found that @fabryscript/data-structures demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.