This file is indexed.

/usr/lib/nodejs/debug-fabulous/src/lazy-debug.js is in node-debug-fabulous 0.0.4-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
var lazyDebug = require('lazy-debug-legacy');

function wrapLazy(debug){
  debug.get = lazyDebug.get;
  debug.getModuleDebugName = lazyDebug.getModuleDebugName;
  debug.configure = lazyDebug.configure;
}

module.exports = wrapLazy;