AK-21/Graphite-Industrial-Intelligence
0
1/**2 * @param {Record<string, string>} attributes3 * Attributes.4 * @param {string} attribute5 * Attribute.6 * @returns {string}7 * Transformed attribute.8 */9export function caseSensitiveTransform(attributes, attribute) {10 return attribute in attributes ? attributes[attribute] : attribute11}12 