mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 08:38:24 -04:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
'use strict';
|
|
var userAgent = require('../internals/environment-user-agent');
|
|
|
|
var webkit = userAgent.match(/AppleWebKit\/(\d+)\./);
|
|
|
|
module.exports = !!webkit && +webkit[1];
|