This file is indexed.

/usr/lib/nodejs/eslint-plugin-html/src/utils.js is in node-eslint-plugin-html 3.2.1-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
"use strict"

function oneLine(parts) {
  return parts
    .map((part, index) => {
      return index > 0 ? arguments[index - 1] + part : part
    })
    .join("")
    .trim()
    .split("\n")
    .map((line) => line.trim())
    .join(" ")
}

module.exports = {
  oneLine,
}