mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-08 17:22:26 +03:00
21 lines
186 B
JavaScript
21 lines
186 B
JavaScript
class BBob {
|
|
constructor(plugins) {
|
|
}
|
|
|
|
parse() {
|
|
|
|
}
|
|
|
|
stringify() {
|
|
|
|
}
|
|
|
|
process(input) {
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = function bbob(...plugins) {
|
|
return new BBob(plugins);
|
|
};
|