astro-ghostcms/.pnpm-store/v3/files/21/5d43e524a54a8909ce782756cbe...

9 lines
239 B
Plaintext

/**
* @param {Record<string, string>} attributes
* @param {string} attribute
* @returns {string}
*/
export function caseSensitiveTransform(attributes, attribute) {
return attribute in attributes ? attributes[attribute] : attribute
}