Logo white

BJ_web_developers / cityOperationCenter

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • cityOperationCenter
  • node_modules
  • node-sass
  • scripts
  • util
  • useragent.js
  • build
    909d7e57
    liuqimichale authored
    2019-01-14 13:12:46 +0800  
    Browse Code ยป
useragent.js 251 Bytes
Edit Raw Blame History Permalink
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('');
};