source: node_modules/ramda/src/T.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: 322 bytes
RevLine 
[d24f17c]1/**
2 * A function that always returns `true`. Any passed in parameters are ignored.
3 *
4 * @func
5 * @memberOf R
6 * @since v0.9.0
7 * @category Function
8 * @sig * -> Boolean
9 * @param {*}
10 * @return {Boolean}
11 * @see R.F
12 * @example
13 *
14 * R.T(); //=> true
15 */
16var T = function () {
17 return true;
18};
19
20module.exports = T;
Note: See TracBrowser for help on using the repository browser.