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