Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Wrapper classes around Immutable.js that turn it inheritable

License

Notifications You must be signed in to change notification settings

kitten/extendable-immutable

Repository files navigation

Wrapper classes around Immutable.js that turn it inheritable

Extendable Immutable.js

About

Ever wished that you could have OrderedMaps, Maps or Lists with extra methods, that make your life easier? .ofCourse()!

Getting Started

Installing the latest version via npm takes just a second:

npm install --save extendable-immutable

Import what you need:

import { OrderedMap } from 'extendable-immutable'

class Collection extends OrderedMap {
// ...

Quick Intro

import { OrderedMap } from 'extendable-immutable'

class Collection extends OrderedMap {
  static isCollection(val) {
    return val && val instanceof Collection;
  }

  doMagic() {
    return this.map(x => x.set("magic", true));
  }
}

const magic = new Collection();

magic instanceof Immutable.OrderedMap; // true
Immutable.OrderedMap.isOrderedMap(magic); // true

About

Wrapper classes around Immutable.js that turn it inheritable

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published