
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@augu/immutable
Advanced tools
This library is deprecated in favour of @augu/collections, if you want a updated version of this library, please install it using npm i @augu/collections! View the changes here.
~ August
Immutable library made in TypeScript
import { Collection } from '@augu/immutable';
const collection = new Collection<string>();
collection.add('a'); //> Collection [Map] { 0 => 'a' }
collection.map(s => s); //> ['a']
collection.delete('a'); //> true
import { Pair } from '@augu/immutable';
const pair = new Pair('a', 'b'); //> Pair<string, string>
pair.getRight(); //> 'a'
pair.getLeft(); //> 'b'
import { Queue } from '@augu/immutable';
const queue = new Queue(['a', 'b', 'c']); //> Queue<string>
queue.peekAt(0); //> 'a'
queue.peek(); //> 'c'
queue.enqueue('d'); //> Queue<string>
queue.tick(console.log); //> Logs 'a', 'b', 'c', 'd'
import { TimedQueue } from '@augu/immutable';
const queue = new TimedQueue({
itemCount: 1, // emit only 1 item
every: 3000, // stop the timer at 3 seconds
time: 1000 // every time to "sleep" until enqueueing
});
queue.on('tick', console.log);
queue.add(['a', 'b', 'c']); // adds 'a', 'b', and 'c' to the queue
queue.start(); // starts the timer
|
August |
@augu/immutable is released under the MIT License. Read here for more information.
FAQs
📝 Collections library made in TypeScript
The npm package @augu/immutable receives a total of 11 weekly downloads. As such, @augu/immutable popularity was classified as not popular.
We found that @augu/immutable 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
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.