mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v.gen.js, os_js: port the OS module to JS (#10872)
This commit is contained in:
31
vlib/os_js/environment.js.v
Normal file
31
vlib/os_js/environment.js.v
Normal file
@ -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
|
||||
}
|
Reference in New Issue
Block a user