mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
8 lines
238 B
JavaScript
8 lines
238 B
JavaScript
exports = module.exports = require('./utils.js');
|
|
|
|
// We override this function for browsers, because they print objects nicer
|
|
// natively than JSON.stringify can.
|
|
exports.logObject = function (msg, obj) {
|
|
console.log(msg, "", obj);
|
|
};
|