AK-21/Graphite-Industrial-Intelligence
0
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 