mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
14 lines
233 B
JavaScript
14 lines
233 B
JavaScript
'use strict';
|
|
|
|
const internals = {};
|
|
|
|
|
|
module.exports = function (...args) {
|
|
|
|
try {
|
|
return JSON.stringify.apply(null, args);
|
|
}
|
|
catch (err) {
|
|
return '[Cannot display object: ' + err.message + ']';
|
|
}
|
|
};
|