mirror of
https://github.com/danog/code-server.git
synced 2024-12-14 18:28:13 +01:00
10 lines
193 B
JavaScript
10 lines
193 B
JavaScript
if (!global.NBIN_LOADED) {
|
|
try {
|
|
const nbin = require("nbin");
|
|
nbin.shimNativeFs("{{ROOT_PATH}}");
|
|
global.NBIN_LOADED = true;
|
|
} catch (error) {
|
|
console.log("Not in the binary");
|
|
}
|
|
}
|