1.2.3 • Published 6 years ago

observable-collection v1.2.3

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

observable-collection.js - ObserbableCollection like classes for RxJS

  • ObservableArray<T>
  • ObservableMap<K, V>
  • ObservableWeakMap<K, V>
  • ObservableSet<T>
  • ObservableWeakSet<T>

Synopsys

import { ObservableArray } from "observable-collection";

const array = new ObservableArray(1, 2, 3);
const array2 = ObservableArray.from([1, 2, 3]);

console.log(array instanceof Array);
// > true

array.subscribe(arr => console.log(arr));
array.push(4);
// > [1, 2, 3, 4]

See also

License

This is released under MIT License.

1.2.3

6 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago