mirror of
https://github.com/cp6/my-idlers.git
synced 2024-11-16 23:42:32 +01:00
fd22b0bf58
V2 (Laravel re-make)
9 lines
273 B
JavaScript
Vendored
9 lines
273 B
JavaScript
Vendored
"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));
|
|
};
|