fix 'make check'; add some recent authors

master
Trent Mick 2015-09-07 00:29:17 -07:00
parent 466829dc73
commit bf994a34b3
2 changed files with 19 additions and 16 deletions

View File

@ -20,3 +20,6 @@ Daniel Juhl (https://github.com/danieljuhl)
Chris Barber (https://github.com/cb1kenobi) Chris Barber (https://github.com/cb1kenobi)
Manuel Schneider (https://github.com/manuelschneider) Manuel Schneider (https://github.com/manuelschneider)
Martin Gausby (https://github.com/gausby) Martin Gausby (https://github.com/gausby)
Stéphan Kochen (https://github.com/stephank)
Shakeel Mohamed (https://github.com/shakeelmohamed)
Denis Izmaylov (https://github.com/DenisIzmaylov)

View File

@ -26,23 +26,23 @@ var xxx = function xxx(s) { // internal dev/debug logging
var xxx = function xxx() {}; // comment out to turn on debug logging var xxx = function xxx() {}; // comment out to turn on debug logging
if (typeof window === 'undefined') { if (typeof (window) === 'undefined') {
var os = require('os'); var os = require('os');
var fs = require('fs'); var fs = require('fs');
try { try {
/* Use `+ ''` to hide this import from browserify. */ /* Use `+ ''` to hide this import from browserify. */
var dtrace = require('dtrace-provider' + ''); var dtrace = require('dtrace-provider' + '');
} catch (e) { } catch (e) {
dtrace = null; dtrace = null;
}
} else {
var os = {
hostname: function () {
return window.location.host;
} }
}; } else {
var fs = {}; var os = {
var dtrace = null; hostname: function () {
return window.location.host;
}
};
var fs = {};
var dtrace = null;
} }
var util = require('util'); var util = require('util');
var assert = require('assert'); var assert = require('assert');