Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
coviddata /
node_modules /
token-stream /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2021-01-22 18:49
.npmignore
104
B
-rw-r--r--
2016-06-01 05:32
LICENSE
1.03
KB
-rw-r--r--
2016-06-01 05:32
index.js
841
B
-rw-r--r--
2016-06-01 05:32
Save
Rename
'use strict'; module.exports = TokenStream; function TokenStream(tokens) { if (!Array.isArray(tokens)) { throw new TypeError('tokens must be passed to TokenStream as an array.'); } this._tokens = tokens; } TokenStream.prototype.lookahead = function (index) { if (this._tokens.length <= index) { throw new Error('Cannot read past the end of a stream'); } return this._tokens[index]; }; TokenStream.prototype.peek = function () { if (this._tokens.length === 0) { throw new Error('Cannot read past the end of a stream'); } return this._tokens[0]; }; TokenStream.prototype.advance = function () { if (this._tokens.length === 0) { throw new Error('Cannot read past the end of a stream'); } return this._tokens.shift(); }; TokenStream.prototype.defer = function (token) { this._tokens.unshift(token); };