source: node_modules/ramda-adjunct/lib/stubNull.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 486 bytes
RevLine 
[d24f17c]1"use strict";
2
3exports.__esModule = true;
4exports["default"] = void 0;
5var _ramda = require("ramda");
6/**
7 * A function that returns `null`.
8 *
9 * @func stubNull
10 * @memberOf RA
11 * @since {@link https://char0n.github.io/ramda-adjunct/1.6.0|v1.6.0}
12 * @category Function
13 * @sig ... -> null
14 * @return {null}
15 * @example
16 *
17 * RA.stubNull(); //=> null
18 * RA.stubNull(1, 2, 3); //=> null
19 */
20var stubNull = (0, _ramda.always)(null);
21var _default = stubNull;
22exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.