mirror of
https://github.com/lancedikson/bowser
synced 2026-03-02 03:40:27 +00:00
feat: add Nokia Vendor (#448)
This commit is contained in:
@@ -130,6 +130,22 @@ export default [
|
||||
},
|
||||
},
|
||||
|
||||
/* Nokia */
|
||||
{
|
||||
test: [/Nokia/i],
|
||||
describe(ua) {
|
||||
const model = Utils.getFirstMatch(/Nokia\s+([0-9]+(\.[0-9]+)?)/i, ua);
|
||||
const platform = {
|
||||
type: PLATFORMS_MAP.mobile,
|
||||
vendor: 'Nokia',
|
||||
};
|
||||
if (model) {
|
||||
platform.model = model;
|
||||
}
|
||||
return platform;
|
||||
},
|
||||
},
|
||||
|
||||
/* Mobile */
|
||||
{
|
||||
test: [/[^-]mobi/i],
|
||||
|
||||
Reference in New Issue
Block a user