mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-05 16:48:43 +00:00
9 lines
273 B
JavaScript
9 lines
273 B
JavaScript
|
"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));
|
||
|
};
|