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

Add PlayStation 4 browser support

This commit is contained in:
rcohen-unext
2019-02-06 17:47:28 +09:00
committed by Denis Demchenko
parent a81b8c0ed7
commit 383c627fc0
4 changed files with 56 additions and 0 deletions

View File

@@ -150,4 +150,16 @@ export default [
};
},
},
/* Playstation 4 */
{
test: [/PlayStation 4/],
describe(ua) {
const version = getFirstMatch(/PlayStation 4[/\s](\d+(\.\d+)*)/i, ua);
return {
name: 'PlayStation 4',
version,
};
},
},
];