ramda-adjunct
Version:
Ramda Adjunct is the most popular and most comprehensive set of utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
18 lines (17 loc) • 405 B
JavaScript
import { always } from 'ramda';
/**
* A function that returns empty string.
*
* @func stubString
* @memberOf RA
* @since {@link https://char0n.github.io/ramda-adjunct/2.1.0|v2.1.0}
* @category Function
* @sig ... -> String
* @return {string} The empty string
* @example
*
* RA.stubString(); //=> ''
* RA.stubString(1, 2, 3); //=> ''
*/
var stubString = always('');
export default stubString;