| Current Path : /home/deltalab/PMS/sms-connector/node_modules/mongoose/lib/helpers/ |
| Current File : //home/deltalab/PMS/sms-connector/node_modules/mongoose/lib/helpers/getFunctionName.js |
'use strict';
module.exports = function(fn) {
if (fn.name) {
return fn.name;
}
return (fn.toString().trim().match(/^function\s*([^\s(]+)/) || [])[1];
};