1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/babel-eslint/lib/parse-with-patch.js

10 lines
200 B
JavaScript

"use strict";
var parse = require("./parse");
var patchEscope = require("./patch-eslint-scope");
module.exports = function(code, options) {
patchEscope(options);
return parse(code, options);
};