This file is indexed.

/usr/share/xul-ext/unity/content/unity-misc-utils.js is in xul-ext-unity 3.0.0+14.04.20140416-0ubuntu1.

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
UnityMiscUtils = {
    toISODate: function(d) {
	function pad(n) {
            return n < 10 ? '0' + n : n;
	}
	
	return d.getUTCFullYear() + '-'
            + pad(d.getUTCMonth() + 1) + '-'
            + pad(d.getUTCDate()) + 'T'
            + pad(d.getUTCHours()) + ':'
            + pad(d.getUTCMinutes()) + ':'
            + pad(d.getUTCSeconds()) + 'Z';
    }
};

var EXPORTED_SYMBOLS=["UnityMiscUtils"];