"use strict"; 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 = stubNull; exports["default"] = _default;