UNPKG

@shopgate/engage

Version:
9 lines 426 B
/** * Takes a string and transforms the string into upper case. * @param {string} text The string to modify. * @returns {string} */export var toUpperCase=function toUpperCase(text){return text.toUpperCase();};/** * Takes a string and transforms the string into lower case. * @param {string} text The string to modify. * @returns {string} */export var toLowerCase=function toLowerCase(text){return text.toLowerCase();};