2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2020-06-20 13:22:49 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// This file contains JS functions only present in node.js.
|
|
|
|
// They have been ported from their TypeScript definitions.
|
|
|
|
|
|
|
|
module builtin
|
|
|
|
|
|
|
|
fn JS.process.exit(int)
|
|
|
|
fn JS.process.stdout.write(string) bool
|
|
|
|
fn JS.process.stdout.writeln(string) bool
|
|
|
|
fn JS.process.stderr.write(string) bool
|
|
|
|
fn JS.process.stderr.writeln(string) bool
|