UNPKG

@knyt/luthier

Version:

A library for building standardized, type-safe native web components with full SSR and hydration support.

8 lines (7 loc) 230 B
export function resolveAttributeName(attributeName) { if (attributeName) { // Attribute names are case-insensitive, but _should_ be lower case. return attributeName.toLowerCase(); } return undefined; }