PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/depcheck/dist/parser
Просмотр файла: jsx.js
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = parseJSX;
var _parser = require("@babel/parser");
var _file = require("../utils/file");
async function parseJSX(filename) {
const content = await (0, _file.getContent)(filename);
return (0, _parser.parse)(content, {
sourceType: 'module',
// Enable all known compatible @babel/parser plugins at the time of writing.
// Because we only parse them, not evaluate any code, it is safe to do so.
// note that babel/parser 7+ does not support *, due to plugin incompatibilities
// Because the guys using React always want the newest syntax.
plugins: ['asyncGenerators', 'bigInt', 'classProperties', 'classPrivateProperties', 'classPrivateMethods', ['decorators', {
decoratorsBeforeExport: true
}],
// not decorators-legacy
'doExpressions', 'dynamicImport', 'exportDefaultFrom', 'exportNamespaceFrom', 'flow', 'flowComments', 'functionBind', 'functionSent', 'importMeta', 'logicalAssignment', 'nullishCoalescingOperator', 'numericSeparator', 'objectRestSpread', 'optionalCatchBinding', 'optionalChaining', ['pipelineOperator', {
proposal: 'minimal'
}], 'throwExpressions',
// and finally, jsx
'jsx']
});
}
module.exports = exports.default;Выполнить команду
Для локальной разработки. Не используйте в интернете!