mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 04:45:23 +08:00
9 lines
167 B
JavaScript
9 lines
167 B
JavaScript
const yaml = require('yamljs');
|
|
|
|
module.exports = {
|
|
process(src) {
|
|
const data = yaml.parse(src);
|
|
return `module.exports = ${JSON.stringify(data)};`;
|
|
},
|
|
};
|