| 1234567891011 |
- /**
- * @param {Record<string, string>} attributes
- * Attributes.
- * @param {string} attribute
- * Attribute.
- * @returns {string}
- * Transformed attribute.
- */
- export function caseSensitiveTransform(attributes, attribute) {
- return attribute in attributes ? attributes[attribute] : attribute
- }
|