Skip to content

Commit 0975771

Browse files
committed
chore(core): typo updates
1 parent 34ca48e commit 0975771

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Global
22
node_modules/
33
coverage
4+
package-lock.json
45

56
# OS Generated
67
.DS_Store*

index.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
export default function browser() {
22
const browsers = [
3-
"Chrome",
4-
"Edge",
5-
"Firefox",
6-
"Internet Explorer",
7-
"Safari",
8-
"Opera",
9-
"Yandex",
10-
"Chromium",
11-
"Vivaldi",
12-
"Baidu",
13-
"Brave"
3+
'Chrome',
4+
'Edge',
5+
'Firefox',
6+
'Internet Explorer',
7+
'Safari',
8+
'Opera',
9+
'Yandex',
10+
'Chromium',
11+
'Vivaldi',
12+
'Baidu',
13+
'Brave',
1414
];
1515
return browsers[Math.floor(Math.random() * browsers.length)];
1616
}

0 commit comments

Comments
 (0)