2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-05-15 11:59:37 +03:00
Files
bbob/packages/bbob-core/lib/index.js
T
2018-07-08 13:30:13 +02:00

22 lines
252 B
JavaScript

class BBob {
constructor(plugins) {
this.plugins = plugins;
}
// parse() {
//
// }
//
// stringify() {
//
// }
//
// process(input) {
//
// }
}
module.exports = function bbob(...plugins) {
return new BBob(plugins);
};