bpms_site/.svn/pristine/ad/ad14e75d547a384fdb39ee38d7aef64f1f2ee922.svn-base
2025-11-02 16:38:49 +03:30

11 lines
281 B
Plaintext

/**
* Read record value or throw Promise if it's not resolved yet.
*/ export function readRecordValue(thenable) {
if (thenable.status === "fulfilled") {
return thenable.value;
} else {
throw thenable;
}
}
//# sourceMappingURL=read-record-value.js.map