mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +03:00
22 lines
252 B
JavaScript
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);
|
|
};
|