This file is indexed.

/usr/lib/nodejs/find-cache-dir/index.js is in node-find-cache-dir 1.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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use strict';
const path = require('path');
const commonDir = require('commondir');
const pkgDir = require('pkg-dir');
const makeDir = require('make-dir');

module.exports = options => {
	const name = options.name;
	let dir = options.cwd;

	if (options.files) {
		dir = commonDir(dir, options.files);
	} else {
		dir = dir || process.cwd();
	}

	dir = pkgDir.sync(dir);

	if (dir) {
		dir = path.join(dir, 'node_modules', '.cache', name);

		if (dir && options.create) {
			makeDir.sync(dir);
		}

		if (options.thunk) {
			return function () {
				return path.join.apply(path, [dir].concat(Array.prototype.slice.call(arguments)));
			};
		}
	}

	return dir;
};