| 12345678910111213 |
- import {caseSensitiveTransform} from './case-sensitive-transform.js'
- /**
- * @param {Record<string, string>} attributes
- * Attributes.
- * @param {string} property
- * Property.
- * @returns {string}
- * Transformed property.
- */
- export function caseInsensitiveTransform(attributes, property) {
- return caseSensitiveTransform(attributes, property.toLowerCase())
- }
|