Your IP : 216.73.216.220


Current Path : /home/deltalab/PMS/ims-connector/node_modules/mongoose/lib/helpers/
Upload File :
Current File : //home/deltalab/PMS/ims-connector/node_modules/mongoose/lib/helpers/getFunctionName.js

'use strict';

const functionNameRE = /^function\s*([^\s(]+)/;

module.exports = function(fn) {
  return (
    fn.name ||
    (fn.toString().trim().match(functionNameRE) || [])[1]
  );
};