| DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/es5-ext/function/ |
| Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/es5-ext/function///is-function.js |
"use strict";
var objToString = Object.prototype.toString
, isFunctionStringTag = RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);
module.exports = function (value) {
return typeof value === "function" && isFunctionStringTag(objToString.call(value));
};
|