code-server/scripts/nbin-shim.js

10 lines
181 B
JavaScript
Raw Normal View History

2019-07-05 23:54:04 +07:00
if (!global.NBIN_LOADED) {
try {
const nbin = require("nbin");
nbin.shimNativeFs("{{ROOT_PATH}}");
global.NBIN_LOADED = true;
} catch (error) {
2019-07-11 06:10:39 +07:00
// Not in the binary.
2019-07-05 23:54:04 +07:00
}
}