- StrictMode solo en DEBUG mode - ExecutorService con shutdown apropiado - DNSSetter NetworkCallback unregister - DiffUtil en ChannelAdapter y EventAdapter - minifyEnabled=true y shrinkResources=true para release - Validación en constructores (StreamChannel) - Strings externalizadas - ProGuard rules completas - Testing dependencies agregadas - Removed Firebase (uso personal) - JavaDoc documentación agregada - Android SDK configurado localmente Compilado exitosamente: StreamPlayer v9.4.2 debug APK (11MB)
16 lines
373 B
JavaScript
16 lines
373 B
JavaScript
module.exports = inspectorLog;
|
|
|
|
// black hole
|
|
const nullStream = new (require('stream').Writable)();
|
|
nullStream._write = () => {};
|
|
|
|
/**
|
|
* Outputs a `console.log()` to the Node.js Inspector console *only*.
|
|
*/
|
|
function inspectorLog() {
|
|
const stdout = console._stdout;
|
|
console._stdout = nullStream;
|
|
console.log.apply(console, arguments);
|
|
console._stdout = stdout;
|
|
}
|