Files
xahaud/src/js/utils.web.js
2012-11-26 15:12:15 -08:00

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);
};