in packages/docpack/lib/utils/DocpackPlugin.js [34:47]
function PluginImplementation(config) {
if (this instanceof PluginImplementation == false) {
return new PluginImplementation(config);
}
this.config = mergeOptions(
options.defaultConfig || {},
isPlainObject(config) ? config : {}
);
if (options.init) {
options.init.call(this, config);
}
}