Files
supplier-dispatch-h5/node_modules/@hapi/hoek/lib/stringify.js
2023-08-11 10:45:20 +08:00

15 lines
224 B
JavaScript

'use strict';
const internals = {};
module.exports = function (...args) {
try {
return JSON.stringify(...args);
}
catch (err) {
return '[Cannot display object: ' + err.message + ']';
}
};