UNPKG

@qelos/content

Version:

Content API for qelos platform

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] ); };