This file is indexed.

/usr/share/doc/libjs-jquery-meiomask/rules is in libjs-jquery-meiomask 8-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
17
/*
Rules are symbolic characters that match a certain regular expression.
meioMask haves some defined rules but you may add yours to the rules object.

Making masks will be explained further, and you’ll understand how to glue
all this stuff :P.

meioMask defined rules:
*/

$.mask.rules =  {
	'z': /[a-z]/,
	'Z': /[A-Z]/,
	'a': /[a-zA-Z]/,
	'*': /[0-9a-zA-Z]/,
	'@': /[0-9a-zA-ZçÇáàãéèíìóòõúùü]/
};