parse-with-patch.js 200 B

123456789
  1. "use strict";
  2. var parse = require("./parse");
  3. var patchEscope = require("./patch-eslint-scope");
  4. module.exports = function(code, options) {
  5. patchEscope(options);
  6. return parse(code, options);
  7. };