We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af39ea0 commit 8efdebfCopy full SHA for 8efdebf
scripts/ufs_statistic.js
@@ -1,6 +1,18 @@
1
import { UfsGlobal } from "./content-scripts/ufs_global.js";
2
import { getUserAvatarFromUid } from "./fb_GLOBAL.js";
3
4
+/*
5
+ temp1.reduce((b, a ) => {
6
+ const e = a.eventName;
7
+ if(b.has(e)) b.set(e, b.get(e) + 1)
8
+ else b.set(e, 1)
9
+ return b;
10
+ }, new Map())
11
+
12
+ new Map(Array.from(temp2).sort((a, b) => a[1] - b[1]))
13
14
+ */
15
16
export default {
17
icon: "/assets/icon32.png",
18
name: {
0 commit comments