UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

11 lines (8 loc) 188 B
'use strict'; const functionNameRE = /^function\s*([^\s(]+)/; module.exports = function(fn) { return ( fn.name || (fn.toString().trim().match(functionNameRE) || [])[1] ); };