Socket
Socket
Sign inDemoInstall

@augu/immutable

Package Overview
Dependencies
0
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @augu/immutable

📝 Collections library made in TypeScript


Version published
Weekly downloads
22
Maintainers
1
Created
Weekly downloads
 

Readme

Source

NOTICE

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

@augu/immutable

npm version Stars Workflow Status Build Status Build Size

Immutable library made in TypeScript

Examples

Collection

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

Pair

import { Pair } from '@augu/immutable';

const pair = new Pair('a', 'b'); //> Pair<string, string>
pair.getRight(); //> 'a'
pair.getLeft(); //> 'b'

Queue

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'

TimedQueue

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

Maintainers

August

August

LICENSE

@augu/immutable is released under the MIT License. Read here for more information.

FAQs

Last updated on 29 Dec 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc