mirror of
https://github.com/JonasunderscoreJones/api.jonasjones.dev.git
synced 2025-10-23 20:19:19 +02:00
Initial commit (by create-cloudflare CLI)
This commit is contained in:
commit
58a42872a0
1745 changed files with 741893 additions and 0 deletions
20
node_modules/rollup-plugin-node-polyfills/polyfills/tty.js
generated
vendored
Normal file
20
node_modules/rollup-plugin-node-polyfills/polyfills/tty.js
generated
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
// MIT lisence
|
||||
// from https://github.com/substack/tty-browserify/blob/1ba769a6429d242f36226538835b4034bf6b7886/index.js
|
||||
|
||||
export function isatty() {
|
||||
return false;
|
||||
}
|
||||
|
||||
export function ReadStream() {
|
||||
throw new Error('tty.ReadStream is not implemented');
|
||||
}
|
||||
|
||||
export function WriteStream() {
|
||||
throw new Error('tty.ReadStream is not implemented');
|
||||
}
|
||||
|
||||
export default {
|
||||
isatty: isatty,
|
||||
ReadStream: ReadStream,
|
||||
WriteStream: WriteStream
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue