10 lines
188 B
JavaScript
10 lines
188 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
function isPromise(value) {
|
|
return value instanceof Promise;
|
|
}
|
|
|
|
exports.isPromise = isPromise;
|