diff options
Diffstat (limited to '_mint/parser/functions.js')
-rw-r--r-- | _mint/parser/functions.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/_mint/parser/functions.js b/_mint/parser/functions.js new file mode 100644 index 0000000..96a15f1 --- /dev/null +++ b/_mint/parser/functions.js @@ -0,0 +1,7 @@ +const MintParser = require('./base'); + +module.exports = class MintParserFunctions extends MintParser { + parse(file) { + return file.replace(/fn ([a-zA-Z\-_]*)\(([a-zA-Z\-_, ]*)\)( |){((.|\n)*)}/gm, "function $1 ($2) {$4}") + } +}
\ No newline at end of file |