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.
 
 
 
 
StackGenVis/frontend/node_modules/assemble-streams/utils.js

37 lines
622 B

'use strict';
var utils = require('lazy-cache')(require);
var fn = require;
require = utils;
/**
* Lazily required module dependencies
*/
require('assemble-handle', 'handle');
require('is-registered');
require('is-valid-instance');
require('match-file', 'match');
require('src-stream', 'src');
require('through2', 'through');
require = fn;
/**
* Utils
*/
utils.isValid = function(app, types) {
if (!utils.isValidInstance(app, types)) {
return false;
}
if (utils.isRegistered(app, 'assemble-streams')) {
return false;
}
return true;
};
/**
* Expose `utils` modules
*/
module.exports = utils;