@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
20 lines (19 loc) • 322 B
JavaScript
/**
* A function that always returns `true`. Any passed in parameters are ignored.
*
* @func
* @memberOf R
* @since v0.9.0
* @category Function
* @sig * -> Boolean
* @param {*}
* @return {Boolean}
* @see R.F
* @example
*
* R.T(); //=> true
*/
var T = function () {
return true;
};
module.exports = T;