UNPKG

@daysnap/utils

Version:
9 lines (5 loc) 217 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/isPromise.ts function isPromise(val) { return val instanceof Promise || !!val.then || !!val.catch; } exports.isPromise = isPromise;