mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
8 lines
273 B
JavaScript
Vendored
8 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));
|
|
};
|