UNPKG

@opentelemetry/resources

Version:
10 lines 265 B
/* * 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