aboutsummaryrefslogtreecommitdiff
path: root/_mint/parser/variables.js
blob: 368be4c5275c30b9e15feeab1977b7279af5e7db (plain)
1
2
3
4
5
6
7
const MintParser = require('./base');

module.exports = class MintParserVariables extends MintParser {
    parse(file) {
        return file.replace(/global ([a-zA-Z\-_]*)( |)=( |)(.*);/g, "global.$1 = $4;")
    }
}