mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
52fbc604b8
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Yash-Singh1 <saiansh2525@gmail.com>
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
const { Generator } = require('jison');
|
|
|
|
module.exports = {
|
|
process(sourceText, sourcePath, options) {
|
|
return { code: new Generator(sourceText, options.transformerConfig).generate() };
|
|
},
|
|
};
|