⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
acorn-node
/
lib
/
export-ns-from
/
View File Name :
index.js
/* Generated by `npm run build`, do not edit! */ "use strict" var skipWhiteSpace = /(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g module.exports = function(Parser) { var tt = (Parser.acorn || require("acorn")).tokTypes return /*@__PURE__*/(function (Parser) { function anonymous () { Parser.apply(this, arguments); } if ( Parser ) Object.setPrototypeOf(anonymous, Parser); anonymous.prototype = Object.create( Parser && Parser.prototype ); anonymous.prototype.constructor = anonymous; anonymous.prototype.parseExport = function parseExport (node, exports) { skipWhiteSpace.lastIndex = this.pos var skip = skipWhiteSpace.exec(this.input) var next = this.input.charAt(this.pos + skip[0].length) if (next !== "*") { return Parser.prototype.parseExport.call(this, node, exports) } this.next() this.expect(tt.star) if (this.eatContextual("as")) { node.exported = this.parseIdent(true) this.checkExport(exports, node.exported.name, node.exported.start) } else { node.exported = null } this.expectContextual("from") if (this.type !== tt.string) { this.unexpected() } node.source = this.parseExprAtom() this.semicolon() return this.finishNode(node, "ExportAllDeclaration") }; return anonymous; }(Parser)) }