UNPKG
@lifaon/path
Version:
latest (3.0.0)
3.0.0
2.1.0
2.0.0
1.1.2
1.1.1
1.1.0
1.0.0
Useful tool to manage paths like the URL object
github.com/lifaon74/path
lifaon74/path
@lifaon/path
/
.private
/
functions
/
get-process.js
9 lines
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
function
getProcess
(
) {
if
(
'process'
in
globalThis) {
return
globalThis.
process
; }
else
{
throw
new
Error
(
"Not on a NodeJS's environment"
); } }
//# sourceMappingURL=get-process.js.map