mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 04:58:25 -04:00
6 lines
230 B
JavaScript
6 lines
230 B
JavaScript
'use strict';
|
|
// https://github.com/zloirock/core-js/issues/280
|
|
var userAgent = require('../internals/environment-user-agent');
|
|
|
|
module.exports = /Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(userAgent);
|