UNPKG

@shopgate/engage

Version:
13 lines (12 loc) 382 B
/** * Takes a string and transforms the string into upper case. * @param {string} text The string to modify. * @returns {string} */ export const toUpperCase = text => text.toUpperCase(); /** * Takes a string and transforms the string into lower case. * @param {string} text The string to modify. * @returns {string} */ export const toLowerCase = text => text.toLowerCase();