MCPcopy Create free account
hub / github.com/TruthHun/BookStack / normalizeStyleData

Function normalizeStyleData

static/vuejs/vue.runtime.common.js:5564–5571  ·  view source on GitHub ↗
(data)

Source from the content-addressed store, hash-verified

5562
5563// merge static and dynamic style data on the same vnode
5564function normalizeStyleData (data) {
5565 var style = normalizeStyleBinding(data.style);
5566 // static style is pre-processed into an object during compilation
5567 // and is always a fresh object, so it's safe to merge into it
5568 return data.staticStyle
5569 ? extend(data.staticStyle, style)
5570 : style
5571}
5572
5573// normalize possible array / string values into Object
5574function normalizeStyleBinding (bindingStyle) {

Callers 1

getStyleFunction · 0.70

Calls 2

normalizeStyleBindingFunction · 0.70
extendFunction · 0.70

Tested by

no test coverage detected