Ramda Adjunct 2.33.0

noneP.js

  1. import { curryN, map, pipe } from 'ramda';
  2. import allP from './allP';
  3. import rejectP from './rejectP';
  4. import resolveP from './resolveP';
  5. /**
  6. * Returns a Promise that is resolved with an array of reasons when all of the provided Promises reject, or rejected when any Promise is resolved.
  7. * This pattern is like allP, but fulfillments and rejections are transposed - rejections become the fulfillment values and vice versa.
  8. *
  9. * @func noneP
  10. * @memberOf RA
  11. * @since {@link https://char0n.github.io/ramda-adjunct/2.22.0|v2.22.0}
  12. * @category Function
  13. * @sig [Promise a] -> Promise [a]
  14. * @param {Iterable.<*>} iterable An iterable object such as an Array or String
  15. * @return {Promise} A Promise that is resolved with a list of rejection reasons if all Promises are rejected, or a Promise that is rejected with the fulfillment value of the first Promise that resolves.
  16. * @see {@link RA.allP|allP}
  17. * @example
  18. *
  19. * RA.noneP([Promise.reject('hello'), Promise.reject('world')]); //=> Promise(['hello', 'world'])
  20. * RA.noneP([]); //=> Promise([])
  21. * RA.noneP([Promise.reject(), Promise.resolve('hello world')]); //=> Promise('hello world')
  22. * RA.noneP([Promise.reject(), 'hello world']); //=> Promise('hello world')
  23. */
  24. const noneP = curryN(
  25. 1,
  26. pipe(
  27. map(resolveP),
  28. map((p) => p.then(rejectP, resolveP)),
  29. allP
  30. )
  31. );
  32. export default noneP;