Lines Matching full:then
15 [travis-image]: https://img.shields.io/travis/then/promise.svg?style=flat
16 [travis-url]: https://travis-ci.org/then/promise
17 [dep-image]: https://img.shields.io/david/then/promise.svg?style=flat
18 [dep-url]: https://david-dm.org/then/promise
46 …a way that works on both client and server using node or browserify). It then demonstrates creati…
121 … called with a non-promise value then the promise is fulfilled with that value. If it is called w…
132 Converts values and foreign promises into Promises/A+ promises. If you pass it a value then it ret…
140 Returns a promise for an array. If it is called with a single argument that `Array.isArray` then t…
144 .then(function (res) {
166 .then(function (str) {
184 If the last argument passed to `module.exports` is a function, then it will be treated like a node.…
190 ### Promise#then(onFulfilled, onRejected)
196 If the promise is fulfilled then `onFulfilled` is called. If the promise is rejected then `onRejec…
198 …then` also returns a promise. If the handler that is called returns a promise, the promise return…
202 Sugar for `Promise#then(null, onRejected)`, to mirror `catch` in synchronous code.
208 The same semantics as `.then` except that it does not return a promise and any exceptions are re-th…
221 .then(parseResult)
222 .then(null, retryErrors)