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