basant307/AI_Governance_Project
048
1import {caseSensitiveTransform} from './case-sensitive-transform.js'2 3/**4 * @param {Record<string, string>} attributes5 * Attributes.6 * @param {string} property7 * Property.8 * @returns {string}9 * Transformed property.10 */11export function caseInsensitiveTransform(attributes, property) {12 return caseSensitiveTransform(attributes, property.toLowerCase())13}14 