mirror of https://github.com/vuejs/core.git
refactor(perf): assign value in `if` block (#10836)
This commit is contained in:
parent
ca7d421e87
commit
c9c9dff805
|
@ -51,8 +51,8 @@ export function stringifyStyle(
|
||||||
}
|
}
|
||||||
for (const key in styles) {
|
for (const key in styles) {
|
||||||
const value = styles[key]
|
const value = styles[key]
|
||||||
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key)
|
|
||||||
if (isString(value) || typeof value === 'number') {
|
if (isString(value) || typeof value === 'number') {
|
||||||
|
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key)
|
||||||
// only render valid values
|
// only render valid values
|
||||||
ret += `${normalizedKey}:${value};`
|
ret += `${normalizedKey}:${value};`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue