Files
MOHPortalTest-AllAgents-All…/qwen/nodejs/node_modules/@hapi/hoek/lib/stringify.js
2025-10-24 17:06:14 -05:00

15 lines
224 B
JavaScript
Executable File

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