mirror of
https://github.com/dergigi/boris.git
synced 2025-12-18 07:04:19 +01:00
- Add project structure with TypeScript, React, and Vite - Implement nostr authentication using browser extension (NIP-07) - Add NIP-51 compliant bookmark fetching and display - Create minimal UI with login and bookmark components - Integrate applesauce-core and applesauce-react libraries - Add responsive styling with dark/light mode support - Include comprehensive README with setup instructions This is a minimal MVP for a nostr bookmark client that allows users to view their bookmarks according to NIP-51 specification.
27 lines
866 B
JavaScript
27 lines
866 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.merge = void 0;
|
|
var mergeAll_1 = require("../operators/mergeAll");
|
|
var innerFrom_1 = require("./innerFrom");
|
|
var empty_1 = require("./empty");
|
|
var args_1 = require("../util/args");
|
|
var from_1 = require("./from");
|
|
function merge() {
|
|
var args = [];
|
|
for (var _i = 0; _i < arguments.length; _i++) {
|
|
args[_i] = arguments[_i];
|
|
}
|
|
var scheduler = args_1.popScheduler(args);
|
|
var concurrent = args_1.popNumber(args, Infinity);
|
|
var sources = args;
|
|
return !sources.length
|
|
?
|
|
empty_1.EMPTY
|
|
: sources.length === 1
|
|
?
|
|
innerFrom_1.innerFrom(sources[0])
|
|
:
|
|
mergeAll_1.mergeAll(concurrent)(from_1.from(sources, scheduler));
|
|
}
|
|
exports.merge = merge;
|
|
//# sourceMappingURL=merge.js.map
|