Ramda Adjunct 2.30.0

sliceFrom.js

  1. import { __, slice } from 'ramda';
  2. /**
  3. * Returns the elements of the given list or string (or object with a slice method)
  4. * from fromIndex (inclusive).
  5. * Dispatches to the slice method of the second argument, if present.
  6. *
  7. * @func sliceFrom
  8. * @memberOf RA
  9. * @since {@link https://char0n.github.io/ramda-adjunct/1.16.0|v1.16.0}
  10. * @category List
  11. * @sig Number -> [a] -> [a]
  12. * @param {number} fromIndex The start index (inclusive)
  13. * @param {Array|string} list The list or string to slice
  14. * @return {Array|string} The sliced list or string
  15. * @see {@link http://ramdajs.com/docs/#slice|R.slice}, {@link RA.sliceTo|sliceTo}
  16. * @example
  17. *
  18. * RA.sliceFrom(1, [1, 2, 3]); //=> [2, 3]
  19. */
  20. const sliceFrom = slice(__, Infinity);
  21. export default sliceFrom;