Blame view

node_modules/node-sass/scripts/util/useragent.js 251 Bytes
aaac7fed   liuqimichale   add
1
2
3
4
5
6
7
8
9
10
11
12
13
  var pkg = require('../../package.json');
  
  /**
   * A custom user agent use for binary downloads.
   *
   * @api private
   */
  module.exports = function() {
    return [
      'node/', process.version, ' ',
      'node-sass-installer/', pkg.version
    ].join('');
  };