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