MCPcopy Index your code
hub / github.com/TruthHun/BookStack / normalizeStyleData

Function normalizeStyleData

static/vuejs/vue.js:6006–6013  ·  view source on GitHub ↗
(data)

Source from the content-addressed store, hash-verified

6004
6005// merge static and dynamic style data on the same vnode
6006function normalizeStyleData (data) {
6007 var style = normalizeStyleBinding(data.style);
6008 // static style is pre-processed into an object during compilation
6009 // and is always a fresh object, so it's safe to merge into it
6010 return data.staticStyle
6011 ? extend(data.staticStyle, style)
6012 : style
6013}
6014
6015// normalize possible array / string values into Object
6016function normalizeStyleBinding (bindingStyle) {

Callers 1

getStyleFunction · 0.70

Calls 2

normalizeStyleBindingFunction · 0.70
extendFunction · 0.70

Tested by

no test coverage detected