Source: function/F.js

import always from "./always";

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

export default F;