This file is indexed.

/usr/share/javascript/websocket/browser.min.js is in libjs-websocket 1.0.22-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
var _global=function(){return this}();var nativeWebSocket=_global.WebSocket||_global.MozWebSocket;var websocket_version=require("./version");function W3CWebSocket(uri,protocols){var native_instance;if(protocols){native_instance=new nativeWebSocket(uri,protocols)}else{native_instance=new nativeWebSocket(uri)}return native_instance}module.exports={w3cwebsocket:nativeWebSocket?W3CWebSocket:null,version:websocket_version};