k-l-lambda's picture
updated node_modules
4cadbaf
raw
history blame contribute delete
233 Bytes
'use strict';
const internals = {};
module.exports = function (...args) {
try {
return JSON.stringify.apply(null, args);
}
catch (err) {
return '[Cannot display object: ' + err.message + ']';
}
};