mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
// Somewhat based on:
|
||
// <https://github.com/defunctzombie/node-process/blob/master/browser.js>.
|
||
// But I don’t think one tiny line of code can be copyrighted. 😅
|
||
export const proc = {cwd}
|
||
|
||
function cwd() {
|
||
return '/'
|
||
}
|