summaryrefslogtreecommitdiffstats
path: root/node_modules/node-sass/scripts/util/useragent.js
blob: 2496eec0930843ce93560a30d94c577933f22fb4 (plain) (blame)
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('');
};