@lifaon/rx-js-light
Version:
Blazing fast Observables
15 lines (14 loc) • 505 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ofWithNotifications = void 0;
var from_array_with_notifications_1 = require("../../iterable/sync/from-array/from-array-with-notifications.cjs");
function ofWithNotifications() {
var values = [];
for (var _i = 0; _i < arguments.length; _i++) {
values[_i] = arguments[_i];
}
return (0, from_array_with_notifications_1.fromArrayWithNotifications)(values);
}
exports.ofWithNotifications = ofWithNotifications;