You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
251 B

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