/* * Copyright The OpenTelemetry Authors * SPDX-License-Identifier: Apache-2.0 */ export const isPromiseLike = (val) => { return (val !== null && typeof val === 'object' && typeof val.then === 'function'); }; //# sourceMappingURL=utils.js.map