@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
16 lines • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StaticValueAggregator = void 0;
/** @hidden */
class StaticValueAggregator {
aggregate(other) {
if (this.value === undefined) {
this.value = other;
}
}
getResult() {
return this.value;
}
}
exports.StaticValueAggregator = StaticValueAggregator;
//# sourceMappingURL=StaticValueAggregator.js.map