We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dcc7bb commit a7452e6Copy full SHA for a7452e6
1 file changed
src/utils.jsx
@@ -1 +1,15 @@
1
-function consLog(text) { if (configs.log) $.writeln(text); }
+function consLog(text) {
2
+ if (configs.log)
3
+ $.writeln(text);
4
+}
5
+
6
+function listMatchNames(object) {
7
+ consLog("LISTING ?")
8
+ for(var i=1; i <= object.numProperties; i++) {
9
10
+ var prop = object.property(i);
11
+ consLog(prop.matchName + '('+ prop.name +')');
12
13
+ }
14
15
0 commit comments