Polyfill.JS

For me it is showing POLYFILL.JS virus detected every 5 minutes. I do not know what this is so I wanted to ask is it an app which has a virus or an false detection.

By default, the modules that were polyfilled in Webpack are mirrored over.
However, if you don’t want a module like console to be polyfilled you can specify alises to be skipped here.


const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');

module.exports = {
	// Other rules...
	plugins: [
		new NodePolyfillPlugin({
			excludeAliases: ['console']
		})
	]
};

source → https://github.com/Richienb/node-polyfill-webpack-plugin

Take a full scan with MBAM, see what it finds, and then start to use a good javascript blocker in the browser like NuTensor.

polonus