Source: function/T.js

import always from "./always";

/**
 * A utility function that always returns true regardless of its arguments.
 *
 * @function
 * @name T
 * @returns {boolean}
 */
const T = always(true);

export default T;