@shopgate/engage
Version:
Shopgate's ENGAGE library.
9 lines • 426 B
JavaScript
/**
* 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();};