lbry-desktop/lbrytv/stubs/fs.js

18 lines
357 B
JavaScript
Raw Normal View History

2019-11-07 20:39:22 +01:00
function logWarning(method) {
if (NODE_ENV !== 'production') {
console.error(`Called fs.${method} on lbry.tv. This should be removed.`);
}
}
export default {
readFileSync: () => {
logWarning('readFileSync');
return undefined;
},
accessFileSync: () => {
logWarning('accessFileSync');
return undefined;
},
constants: {},
};