Welcome to mirror list, hosted at ThFree Co, Russian Federation.

useragent.js « util « scripts « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2496eec0930843ce93560a30d94c577933f22fb4 (plain)
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('');
};