ramda-adjunct
Version:
Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
21 lines (20 loc) • 476 B
JavaScript
exports.__esModule = true;
exports["default"] = void 0;
var _ramda = require("ramda");
/**
* A function that returns `null`.
*
* @func stubNull
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/1.6.0|v1.6.0}
* @category Function
* @sig ... -> null
* @return {null}
* @example
*
* RA.stubNull(); //=> null
* RA.stubNull(1, 2, 3); //=> null
*/
var stubNull = (0, _ramda.always)(null);
var _default = exports["default"] = stubNull;
;