gtkatakura/remram

View on GitHub
src/string/upperCase.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Converts string to upper case.
 *
 * @param {String} text The text to converts.
 * @returns {String} Returns the converted text.
 * @example
 *
 * upperCase('test')
 * // => 'TEST'
 */
const upperCase = text => text.toUpperCase();

export default upperCase;