Source: string/toUpper.js

import { curry1 } from "../function";

/**
 * Converts a string to upper case.
 *
 * @param {string} str
 */
const toUpper = (str) => str.toUpperCase();

export default curry1(toUpper);