Skip to content

Commit

Permalink
chore(core): typo updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Jan 21, 2022
1 parent 34ca48e commit 0975771
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Global
node_modules/
coverage
package-lock.json

# OS Generated
.DS_Store*
Expand Down
22 changes: 11 additions & 11 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
export default function browser() {
const browsers = [
"Chrome",
"Edge",
"Firefox",
"Internet Explorer",
"Safari",
"Opera",
"Yandex",
"Chromium",
"Vivaldi",
"Baidu",
"Brave"
'Chrome',
'Edge',
'Firefox',
'Internet Explorer',
'Safari',
'Opera',
'Yandex',
'Chromium',
'Vivaldi',
'Baidu',
'Brave',
];
return browsers[Math.floor(Math.random() * browsers.length)];
}

0 comments on commit 0975771

Please sign in to comment.