12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
|
|
// This is the set of valid output functions. The key values used
|
||
|
|
// map to the commandline parameter values which can be used to specify the
|
||
|
|
// function.
|
||
|
|
|
||
|
|
const dots = require('./dots');
|
||
|
|
const silent = require('./silent');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
silent,
|
||
|
|
dots
|
||
|
|
};
|