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) • 559 B
JavaScript
exports.__esModule = true;
exports["default"] = void 0;
var _ramda = require("ramda");
/**
* A function that returns `undefined`.
*
* @func stubUndefined
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/1.0.0|v1.0.0}
* @category Function
* @sig ... -> undefined
* @return {undefined}
* @example
*
* RA.stubUndefined(); //=> undefined
* RA.stubUndefined(1, 2, 3); //=> undefined
*/
var stubUndefined = (0, _ramda.always)(void 0); // eslint-disable-line no-void
var _default = exports["default"] = stubUndefined;
;