Files
20250612/app_vue/node_modules/@hapi/hoek/lib/stringify.js
2025-06-20 18:01:48 +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 + ']';
}
};