
Company News
Socket Has Acquired Secure Annex
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.
@fabryscript/data-structures
Advanced tools
  ;
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
  
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.

Company News
Socket has acquired Secure Annex to expand extension security across browsers, IDEs, and AI tools.

Research
/Security News
Socket is tracking cloned Open VSX extensions tied to GlassWorm, with several updated from benign-looking sleepers into malware delivery vehicles.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.