aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/builtin/js/jsfns_node.js.v
blob: 6f6562941bcdf45deca4e2e3b7f34dd6e25ee6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
// 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

pub struct JS.node_process {
pub:
	arch     string
	argsv    []string
	env      []string
	platform string
	version  string
	// TODO: add all properties
}

// hack to access  process properties
pub fn js_node_process() JS.node_process {
	#return process

	return JS.node_process{}
}

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