Skip to content

Commit c027962

Browse files
authored
Update css.ts
1 parent 44452e9 commit c027962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build/webref/css.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function hyphenToCamelCase(name: string): string {
1+
export function hyphenToCamelCase(name: string): string {
22
const camel = name
33
.replace(/^-(\w)/, (_, c) => c)
44
.replace(/-(\w)/g, (_, c) => c.toUpperCase());

0 commit comments

Comments
 (0)