mirror of
https://github.com/tenrok/BBob.git
synced 2026-06-05 16:42:27 +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);
|
|
};
|