CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
case-insensitive-transform.js14 linesDownload Raw Back to util
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 
basant307/AI_Governance_Project · CoolFace