Files
TestMesa/backend/frontend/node_modules/tcomb/lib/getFunctionName.js
2024-12-17 14:36:15 -08:00

3 lines
115 B
JavaScript

module.exports = function getFunctionName(f) {
return f.displayName || f.name || '<function' + f.length + '>';
};