Ramda Adjunct 2.10.0

stubNull.js

  1. import { always } from 'ramda';
  2. /**
  3. * A function that returns `null`.
  4. *
  5. * @func stubNull
  6. * @memberOf RA
  7. * @since {@link https://char0n.github.io/ramda-adjunct/1.6.0|v1.6.0}
  8. * @category Function
  9. * @sig ... -> null
  10. * @return {null}
  11. * @example
  12. *
  13. * RA.stubNull(); //=> null
  14. * RA.stubNull(1, 2, 3); //=> null
  15. */
  16. const stubNull = always(null);
  17. export default stubNull;