forked from SomSingh23/hacktoberfest-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.js
21 lines (16 loc) · 1.06 KB
/
users.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
let arr = [];
/*
______ _ _ __ _____ _____ __ _____ _____ ____ _____
.' ___ | (_)/ |_[ | |_ _||_ _[ | |_ _||_ _| |_ \|_ _|
/ .' \_| __`| |-'| |--.| | | | | |.--. | | | |.--. .---. _ .--. | \ | | ,--. _ .--..--. .---.
| | ____[ || | | .-. | ' ' | | '/'`\ \ | ' ' ( (`\]/ /__\\[ `/'`\] | |\ \| | `'_\ :[ `.-. .-. |/ /__\\
\ `.___] || || |, | | | |\ \__/ / | \__/ | \ \__/ / `'.'.| \__., | | _| |_\ |_// | |,| | | | | || \__.,
`._____.'[___]__/[___]|__]`.__.' [__;.__.' `.__.' [\__) )'.__.'[___] |_____|\____\'-;__[___||__||__]'.__.'
*/
// push your github username in arr
// example: arr.push('<github username>')
arr.push("somsingh23");
arr.push("codshashank1");
arr.push("SourishMittal");
arr.push("dheerajydv19");
/*⚡don't change this⚡*/ module.exports = arr;