Buckets:

imerfanrajabee's picture
download
raw
952 Bytes
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.firstValueFrom = void 0;
var EmptyError_1 = require("./util/EmptyError");
var Subscriber_1 = require("./Subscriber");
function firstValueFrom(source, config) {
var hasConfig = typeof config === 'object';
return new Promise(function (resolve, reject) {
var subscriber = new Subscriber_1.SafeSubscriber({
next: function (value) {
resolve(value);
subscriber.unsubscribe();
},
error: reject,
complete: function () {
if (hasConfig) {
resolve(config.defaultValue);
}
else {
reject(new EmptyError_1.EmptyError());
}
},
});
source.subscribe(subscriber);
});
}
exports.firstValueFrom = firstValueFrom;
//# sourceMappingURL=firstValueFrom.js.map

Xet Storage Details

Size:
952 Bytes
·
Xet hash:
2ee32796f7aa32cf395adc3c06515c8706ae0161d7918cfced31e09c328b293d

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.