aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/os_js/environment.js.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/vlib/os_js/environment.js.v')
-rw-r--r--v_windows/v/old/vlib/os_js/environment.js.v31
1 files changed, 31 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/os_js/environment.js.v b/v_windows/v/old/vlib/os_js/environment.js.v
new file mode 100644
index 0000000..0f69f09
--- /dev/null
+++ b/v_windows/v/old/vlib/os_js/environment.js.v
@@ -0,0 +1,31 @@
+module os_js
+
+// setenv sets the value of an environment variable with `name` to `value`.
+pub fn setenv(key string, val string, overwrite bool) {
+ #if ($process.env[key] && !(overwrite.valueOf())) return;
+ #$process.env[key] = val + '';
+}
+
+// `getenv` returns the value of the environment variable named by the key.
+pub fn getenv(key string) string {
+ mut res := ''
+ #if ($process.env[key]) res = new builtin.string($process.env[key])
+
+ return res
+}
+
+// unsetenv clears an environment variable with `name`.
+pub fn unsetenv(name string) int {
+ #$process.env[name] = ""
+
+ return 1
+}
+
+pub fn environ() map[string]string {
+ mut res := map[string]string{}
+ #for (const key in $process.env) {
+ #res.map.set(key,$process.env[key])
+ #}
+
+ return res
+}