rating-room/src/helpers/normalize.js

7 lines
166 B
JavaScript

/**
* @param {string} str Any string
* @returns {string} Lowercased string without any extra spaces
*/
export const normalize = (str) => str.toLowerCase().trim()