2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-05 16:42:27 +03:00
Files
bbob/packages/bbob-core/lib/index.js
T
2018-07-06 00:46:37 +02:00

21 lines
186 B
JavaScript

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