buffer-apg-js
Version:
JavaScript APG, an ABNF Parser Generator
10 lines (9 loc) • 481 B
JavaScript
/* *************************************************************************************
* copyright: Copyright (c) 2021 Lowell D. Thomas, all rights reserved
* license: BSD-2-Clause (https://opensource.org/licenses/BSD-2-Clause)
* ********************************************************************************* */
// Exports the converter and transformer objects.
module.exports = {
converter: require('./converter'),
transformers: require('./transformers'),
};