wallet-core/node_modules/symbol-observable/readme.md

32 lines
798 B
Markdown
Raw Normal View History

2018-09-20 02:56:13 +02:00
# symbol-observable [![Build Status](https://travis-ci.org/benlesh/symbol-observable.svg?branch=master)](https://travis-ci.org/benlesh/symbol-observable)
2017-05-28 00:38:50 +02:00
2017-12-27 19:33:54 +01:00
> [`Symbol.observable`](https://github.com/zenparsing/es-observable) [ponyfill](https://ponyfill.com)
2017-05-28 00:38:50 +02:00
## Install
```
$ npm install --save symbol-observable
```
## Usage
```js
2018-09-20 02:56:13 +02:00
const symbolObservable = require('symbol-observable').default;
2017-05-28 00:38:50 +02:00
console.log(symbolObservable);
//=> Symbol(observable)
```
## Related
- [is-observable](https://github.com/sindresorhus/is-observable) - Check if a value is an Observable
- [observable-to-promise](https://github.com/sindresorhus/observable-to-promise) - Convert an Observable to a Promise
## License
2018-09-20 02:56:13 +02:00
MIT © [Sindre Sorhus](https://sindresorhus.com) and [Ben Lesh](https://github.com/benlesh)