11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
'use strict'
|
||
|
||
// 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. 😅
|
||
exports.cwd = cwd
|
||
|
||
function cwd() {
|
||
return '/'
|
||
}
|