madiator.com/web/stubs/fs.js

18 lines
369 B
JavaScript
Raw Normal View History

2021-08-16 12:11:25 +02:00
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: {},
};