mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-24 05:29:26 +08:00
d7506e9702
Co-authored-by: Oliver King <oking3@uncc.edu>
10 lines
284 B
JavaScript
10 lines
284 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.isPromise = void 0;
|
|
function isPromise(maybePromise) {
|
|
return !!maybePromise &&
|
|
!!maybePromise.then &&
|
|
(typeof maybePromise.then === 'function');
|
|
}
|
|
exports.isPromise = isPromise;
|