forked from zhurui/management
10 lines
200 B
JavaScript
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);
|
||
|
};
|