Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.106
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
get-stdin /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
905
B
-rw-r--r--
2026-02-18 13:02
index.js
497
B
-rw-r--r--
2026-02-18 13:02
license
1.09
KB
-rw-r--r--
2026-02-18 13:02
package.json
1.77
KB
-rw-r--r--
2026-02-18 13:02
readme.md
1.4
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
/// <reference types="node"/> declare const getStdin: { /** Get [`stdin`](https://nodejs.org/api/process.html#process_process_stdin) as a `string`. @returns A promise that is resolved when the `end` event fires on the `stdin` stream, indicating that there is no more data to be read. In a TTY context, an empty `string` is returned. @example ``` // example.ts import getStdin = require('get-stdin'); (async () => { console.log(await getStdin()); //=> 'unicorns' }) // $ echo unicorns | ts-node example.ts // unicorns ``` */ (): Promise<string>; /** Get [`stdin`](https://nodejs.org/api/process.html#process_process_stdin) as a `Buffer`. @returns A promise that is resolved when the `end` event fires on the `stdin` stream, indicating that there is no more data to be read. In a TTY context, an empty `Buffer` is returned. */ buffer(): Promise<Buffer>; }; export = getStdin;