blob: 5f981b61f4ee63deb7e0215bdb748fe08fb14db9 [file] [log] [blame]
var _curry1 = /*#__PURE__*/require('./internal/_curry1');
var _of = /*#__PURE__*/require('./internal/_of');
/**
* Returns a singleton array containing the value provided.
*
* Note this `of` is different from the ES6 `of`; See
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/of
*
* @func
* @memberOf R
* @since v0.3.0
* @category Function
* @sig a -> [a]
* @param {*} x any value
* @return {Array} An array wrapping `x`.
* @example
*
* R.of(null); //=> [null]
* R.of([42]); //=> [[42]]
*/
var of = /*#__PURE__*/_curry1(_of);
module.exports = of;