@berish/rfp
Version:
Binary secure transport organization protocol for peer communication using function fingerprints
15 lines • 413 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPrintArguments = void 0;
const fnArgs = require('function-arguments');
function getPrintArguments(func) {
try {
const result = fnArgs(func);
return result || [];
}
catch (err) {
return [];
}
}
exports.getPrintArguments = getPrintArguments;
//# sourceMappingURL=getPrintArguments.js.map