Projekt

Obecné

Profil

Stáhnout (278 Bajtů) Statistiky
| Větev: | Revize:
1
var defaultEncoding
2
/* istanbul ignore next */
3
if (process.browser) {
4
  defaultEncoding = 'utf-8'
5
} else {
6
  var pVersionMajor = parseInt(process.version.split('.')[0].slice(1), 10)
7

    
8
  defaultEncoding = pVersionMajor >= 6 ? 'utf-8' : 'binary'
9
}
10
module.exports = defaultEncoding
(2-2/5)