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.
53 lines
1.1 KiB
53 lines
1.1 KiB
4 years ago
|
'use strict';
|
||
|
|
||
|
var debug = require('debug')('base:cli:process');
|
||
|
|
||
|
/**
|
||
|
* _(Requires [templates][], otherwise ignored)_
|
||
|
*
|
||
|
* Register helpers to use in templates. Value can be a string or
|
||
|
* array of module names, glob patterns, or file paths, or an object
|
||
|
* where each key is a filepath, glob or module name, and the value
|
||
|
* is an options object to pass to resolved helpers.
|
||
|
*
|
||
|
* _(Modules must be locally installed and listed in `dependencies` or
|
||
|
* `devDependencies`)_.
|
||
|
*
|
||
|
* ```json
|
||
|
* // module names
|
||
|
* {
|
||
|
* "verb": {
|
||
|
* "helpers": {
|
||
|
* "helper-foo": {},
|
||
|
* "helper-bar": {}
|
||
|
* }
|
||
|
* }
|
||
|
* }
|
||
|
*
|
||
|
* // register a glob of helpers
|
||
|
* {
|
||
|
* "verb": {
|
||
|
* "helpers": ["foo/*.js"]
|
||
|
* }
|
||
|
* }
|
||
|
* ```
|
||
|
* @name helpers
|
||
|
* @api public
|
||
|
*/
|
||
|
|
||
|
module.exports = function(app, base, env, options) {
|
||
|
return function(helpers, key, config, next) {
|
||
|
if (typeof app.helper !== 'function') {
|
||
|
next(new Error('expected app.helper to be a function'));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
for (var prop in helpers) {
|
||
|
debug('loading helper "%s"', prop);
|
||
|
this.helper(prop, helpers[prop].fn);
|
||
|
}
|
||
|
|
||
|
next();
|
||
|
};
|
||
|
};
|