Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #14 from mrepol742/master
Browse files Browse the repository at this point in the history
Initial PR
  • Loading branch information
mrepol742 authored Jan 15, 2024
2 parents 58b8217 + 1d5a7da commit 0cc0b8a
Show file tree
Hide file tree
Showing 4 changed files with 721 additions and 559 deletions.
2 changes: 1 addition & 1 deletion data/groups.json

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions data/test-find.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*jshint esversion: 9 */
/*jshint -W018 */
/*jshint -W069 */
/*jshint -W083 */
/*jshint -W088 */
/*jshint -W038 */

const fs = require("fs");

let users = JSON.parse(fs.readFileSync(__dirname + "/users.json","utf8"));

for (user in users.list) {
let name = users.list[user].name;
if (name) {
let userName = name.normalize("NFKC").toLowerCase()
// console.log(userName)
} else {
console.log(users.list[user].id)
}
}
2 changes: 1 addition & 1 deletion data/users.json

Large diffs are not rendered by default.

Loading

0 comments on commit 0cc0b8a

Please sign in to comment.