mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
13 lines
336 B
JavaScript
Vendored
13 lines
336 B
JavaScript
Vendored
var defaultEncoding
|
|
/* istanbul ignore next */
|
|
if (process.browser) {
|
|
defaultEncoding = 'utf-8'
|
|
} else if (process.version) {
|
|
var pVersionMajor = parseInt(process.version.split('.')[0].slice(1), 10)
|
|
|
|
defaultEncoding = pVersionMajor >= 6 ? 'utf-8' : 'binary'
|
|
} else {
|
|
defaultEncoding = 'utf-8'
|
|
}
|
|
module.exports = defaultEncoding
|