Source: function/placeholderArgument.js

/**
 * Placeholder argument for curried functions.
 *
 * @see curry
 */
const __ = Symbol("placeholderArgument");

export default __;