mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
6 lines
271 B
JavaScript
6 lines
271 B
JavaScript
// https://github.com/zloirock/core-js/issues/280
|
|
var userAgent = require('../internals/engine-user-agent');
|
|
|
|
// eslint-disable-next-line unicorn/no-unsafe-regex -- safe
|
|
module.exports = /Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(userAgent);
|