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
|
Rev | Line | |
---|
[d24f17c] | 1 | "use strict";
|
---|
| 2 |
|
---|
| 3 | exports.__esModule = true;
|
---|
| 4 | exports["default"] = void 0;
|
---|
| 5 | var _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 | */
|
---|
| 20 | var stubString = (0, _ramda.always)('');
|
---|
| 21 | var _default = stubString;
|
---|
| 22 | exports["default"] = _default; |
---|
Note:
See
TracBrowser
for help on using the repository browser.