frontend/.pnpm-store/v3/files/24/9ebe5a1846f9f8cbca8c3358137e11818474ee18fb93dfd9239a17e66b0a758d970c4154b753a29e3acff5cc147181bacfff47827a7fd6f50381c88cd02a27

9 lines
273 B
Plaintext

"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));
};