Sha256: decc22849b3d756d44346597dc049f1cc9277716134cb39f7f7dace79f09cfe7
Contents?: true
Size: 1.12 KB
Versions: 8
Compression:
Stored size: 1.12 KB
Contents
"use strict"; exports.__esModule = true; // istanbul ignore next function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj["default"] = obj; return newObj; } } var _babylon = require("babylon"); var babylon = _interopRequireWildcard(_babylon); /** * Parse `code` with normalized options, collecting tokens and comments. */ exports["default"] = function (code) { var opts = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1]; var parseOpts = { allowImportExportEverywhere: opts.looseModules, allowReturnOutsideFunction: opts.looseModules, allowHashBang: true, ecmaVersion: 6, strictMode: opts.strictMode, sourceType: opts.sourceType, locations: true, features: opts.features || {}, plugins: opts.plugins || {} }; if (opts.nonStandard) { parseOpts.plugins.jsx = true; parseOpts.plugins.flow = true; } return babylon.parse(code, parseOpts); }; module.exports = exports["default"];
Version data entries
8 entries across 8 versions & 3 rubygems