maycur-business
Version:
maycur business react components of web
12 lines (10 loc) • 332 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = isasyncfunction;
// Copyright 2015-2018 FormBucket LLC
// ISFUNCTION returns true when `value` is a function.
function isasyncfunction(value) {
return value && Object.prototype.toString.call(value) == "[object AsyncFunction]";
}