UNPKG

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.

20 lines (19 loc) 423 B
/** * This function returns a new empty object. * * @func stubObj * @memberOf RA * @since {@link https://char0n.github.io/ramda-adjunct/2.1.0|v2.1.0} * @category Function * @sig ... -> Object * @aliases stubObject * @return {Object} Returns the new empty object. * @example * * RA.stubObj(); //=> {} * RA.stubObj(1, 2, 3); //=> {} */ var stubObj = function stubObj() { return {}; }; export default stubObj;