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 '/'
|
||
}
|