CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
case-sensitive-transform.js12 linesDownload Raw Back to util
1/**2 * @param {Record<string, string>} attributes3 *   Attributes.4 * @param {string} attribute5 *   Attribute.6 * @returns {string}7 *   Transformed attribute.8 */9export function caseSensitiveTransform(attributes, attribute) {10  return attribute in attributes ? attributes[attribute] : attribute11}12 
basant307/AI_Governance_Project · CoolFace