madiator.com/web/stubs/fs.js
2021-08-16 12:11:25 +02:00

18 lines
369 B
JavaScript

function logWarning(method) {
if (process.env.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: {},
};