StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
664 B
19 lines
664 B
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
|
|
// This module is a runtime utility for cleaner component module output and will
|
|
// be included in the final webpack user bundle.
|
|
|
|
module.exports = function installDirectives (component, directives) {
|
|
var options = typeof component.exports === 'function'
|
|
? component.exports.extendOptions
|
|
: component.options
|
|
|
|
if (typeof component.exports === 'function') {
|
|
options.directives = component.exports.options.directives
|
|
}
|
|
|
|
options.directives = options.directives || {}
|
|
|
|
for (var i in directives) {
|
|
options.directives[i] = options.directives[i] || directives[i]
|
|
}
|
|
}
|
|
|