source: node_modules/ramda-adjunct/lib/stubString.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: 517 bytes
Line 
1"use strict";
2
3exports.__esModule = true;
4exports["default"] = void 0;
5var _ramda = require("ramda");
6/**
7 * A function that returns empty string.
8 *
9 * @func stubString
10 * @memberOf RA
11 * @since {@link https://char0n.github.io/ramda-adjunct/2.1.0|v2.1.0}
12 * @category Function
13 * @sig ... -> String
14 * @return {string} The empty string
15 * @example
16 *
17 * RA.stubString(); //=> ''
18 * RA.stubString(1, 2, 3); //=> ''
19 */
20var stubString = (0, _ramda.always)('');
21var _default = stubString;
22exports["default"] = _default;
Note: See TracBrowser for help on using the repository browser.