1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00

Expanded test coverage for utils.js

This commit is contained in:
Oliver foster
2019-12-19 11:22:40 +00:00
parent a54868776d
commit 3cdfd7de02
2 changed files with 49 additions and 3 deletions

View File

@@ -303,7 +303,7 @@ export default class Utils {
* @param {string} browserName
* @return {string}
*/
static getBrowserTypeByAlias(browserAlia) {
return BROWSER_MAP[browserAlia] || '';
static getBrowserTypeByAlias(browserAlias) {
return BROWSER_MAP[browserAlias] || '';
}
}