Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@hapi/hoek/lib/stringify.js
1126 views
1
'use strict';
2
3
const internals = {};
4
5
6
module.exports = function (...args) {
7
8
try {
9
return JSON.stringify(...args);
10
}
11
catch (err) {
12
return '[Cannot display object: ' + err.message + ']';
13
}
14
};
15
16