mirror of
https://github.com/dergigi/boris.git
synced 2026-02-01 21:24:21 +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.
30 lines
809 B
JavaScript
30 lines
809 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = _using;
|
|
function _using(stack, value, isAwait) {
|
|
if (value === null || value === void 0) return value;
|
|
if (Object(value) !== value) {
|
|
throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");
|
|
}
|
|
if (isAwait) {
|
|
var dispose = value[Symbol.asyncDispose || Symbol.for("Symbol.asyncDispose")];
|
|
}
|
|
if (dispose === null || dispose === void 0) {
|
|
dispose = value[Symbol.dispose || Symbol.for("Symbol.dispose")];
|
|
}
|
|
if (typeof dispose !== "function") {
|
|
throw new TypeError(`Property [Symbol.dispose] is not a function.`);
|
|
}
|
|
stack.push({
|
|
v: value,
|
|
d: dispose,
|
|
a: isAwait
|
|
});
|
|
return value;
|
|
}
|
|
|
|
//# sourceMappingURL=using.js.map
|