source: node_modules/ramda-adjunct/lib/stubObj.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: 525 bytes
RevLine 
[d24f17c]1"use strict";
2
3exports.__esModule = true;
4exports["default"] = void 0;
5/**
6 * This function returns a new empty object.
7 *
8 * @func stubObj
9 * @memberOf RA
10 * @since {@link https://char0n.github.io/ramda-adjunct/2.1.0|v2.1.0}
11 * @category Function
12 * @sig ... -> Object
13 * @aliases stubObject
14 * @return {Object} Returns the new empty object.
15 * @example
16 *
17 * RA.stubObj(); //=> {}
18 * RA.stubObj(1, 2, 3); //=> {}
19 */
20
21var stubObj = function stubObj() {
22 return {};
23};
24var _default = stubObj;
25exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.