mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
7 lines
198 B
JavaScript
7 lines
198 B
JavaScript
const { Generator } = require('jison')
|
|
const { getOptions } = require('loader-utils')
|
|
|
|
module.exports = function jisonLoader (source) {
|
|
return new Generator(source, getOptions(this)).generate()
|
|
}
|