This file is indexed.

/usr/lib/nodejs/strip-bom-stream/index.js is in node-strip-bom-stream 2.0.0-1.

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

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
'use strict';
var firstChunk = require('first-chunk-stream');
var stripBom = require('strip-bom');

module.exports = function () {
	return firstChunk({chunkLength: 3}, function (err, chunk, enc, cb) {
		if (err) {
			cb(err);
			return;
		}

		cb(null, stripBom(chunk));
	});
};