Divy Srivastava
|
bba553bea5
|
fix(ext/node): homedir() getpwuid /SHGetKnownFolderPath fallback (#23841)
**Unix**: Returns the value of the HOME environment variable if it is
set even if it is an empty string. Otherwise, it tries to determine the
home directory by invoking the
[getpwuid_r](https://linux.die.net/man/3/getpwuid_r) function with the
UID of the current user.
**Windows**: Returns the value of the USERPROFILE environment variable
if it is set and it is not an empty string. Otherwise, it tries to
determine the home directory by invoking the
[SHGetKnownFolderPath](https://learn.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shgetknownfolderpath)
function with
[FOLDERID_Profile](https://learn.microsoft.com/en-us/windows/win32/shell/knownfolderid).
Fixes https://github.com/denoland/deno/issues/23824
|
2024-05-16 10:52:40 +05:30 |
|
Divy Srivastava
|
c0f40ed81a
|
fix(ext/node): implement process.kill in Rust (#23130)
Closes https://github.com/denoland/deno/issues/23056
|
2024-04-20 18:55:07 +05:30 |
|
David Sherret
|
7e72f3af61
|
chore: update copyright to 2024 (#21753)
|
2024-01-01 19:58:21 +00:00 |
|
Divy Srivastava
|
3db9c8742d
|
fix(ext/node): add process.abort() (#21742)
|
2023-12-30 20:30:55 +05:30 |
|
Divy Srivastava
|
c08319262a
|
fix(node): Implement os.cpus() (#21697)
Fixes https://github.com/denoland/deno/issues/21666
Zero added dependency and tries to match the libuv implementation
|
2023-12-28 09:08:50 +05:30 |
|