unboundedpress/node_modules/observable-to-promise
Michael Winter 555e2c196e initial commit
..
index.js initial commit
license initial commit
package.json initial commit
readme.md initial commit

readme.md

observable-to-promise Build Status

Convert an Observable to a Promise

Install

$ npm install --save observable-to-promise

Usage

const observableToPromise = require('observable-to-promise');

observableToPromise(Observable.of(1, 2)).then(result => {
	console.log(result);
	//=> [1, 2]
});

License

MIT © Sindre Sorhus