ui/toolbar/normalizetoolbarconfig
 module
Functions
- normalizeToolbarConfig( config ) → object- module:ui/toolbar/normalizetoolbarconfig~normalizeToolbarConfig- Normalizes the toolbar configuration ( - config.toolbar), which:- may be defined as an Array:
 - toolbar: [ 'heading', 'bold', 'italic', 'link', ... ]Copy code- or an Object:
 - toolbar: { items: [ 'heading', 'bold', 'italic', 'link', ... ], removeItems: [ 'bold' ], ... }Copy code- or may not be defined at all (undefined)
 - and returns it in the object form. - Parameters- config : undefined | ToolbarConfig
- The value of - config.toolbar.
 - Returns- object
- A normalized toolbar config object. 
 
- may be defined as an