CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
normalize.js13 linesDownload Raw Back to lib
1/**2 * Get the cleaned case insensitive form of an attribute or property.3 *4 * @param {string} value5 *   An attribute-like or property-like name.6 * @returns {string}7 *   Value that can be used to look up the properly cased property on a8 *   `Schema`.9 */10export function normalize(value) {11  return value.toLowerCase()12}13