1
0
mirror of https://github.com/lancedikson/bowser synced 2024-10-27 20:34:22 +00:00

Merge pull request #287 from ffaubert/detect-chromeos

Add operating system detection for Chrome OS
This commit is contained in:
Denis Demchenko 2019-01-24 22:43:20 +02:00 committed by GitHub
commit 382177f8e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -144,4 +144,14 @@ export default [
}; };
}, },
}, },
/* Chrome OS */
{
test: [/CrOS/],
describe() {
return {
name: 'Chrome OS',
};
},
},
]; ];

View File

@ -174,7 +174,8 @@
browser: browser:
name: "Chrome" name: "Chrome"
version: "29.0.1547.57" version: "29.0.1547.57"
os: {} os:
name: "Chrome OS"
platform: {} platform: {}
engine: engine:
name: "Blink" name: "Blink"