UNPKG

corde

Version:

A simple library for Discord bot tests

17 lines (13 loc) 296 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true, }); exports.isPromise = void 0; function isPromise(obj) { return ( !!obj && (typeof obj === "object" || typeof obj === "function") && typeof obj.then === "function" ); } exports.isPromise = isPromise;