This file is indexed.

/usr/lib/nodejs/get/encodings.js is in node-get 1.1.5+ds1-2.

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
15
16
// Preset encodings for file formats.
module.exports = {
    'ext': {
        '.tif': 'binary',
        '.tiff': 'binary',
        '.geotiff': 'binary',
        '.zip': 'binary',
        '.sqlite': 'binary',
        '.png': 'binary',
        '.gif': 'binary',
        '.jpg': 'binary',
        '.mp3': 'binary',
        '.ico': 'binary',
        '.jpeg': 'binary'
    }
};