working rss feed to nostr publish
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.locateWindow = void 0;
|
||||
const fallbackWindow = {};
|
||||
function locateWindow() {
|
||||
if (typeof window !== "undefined") {
|
||||
return window;
|
||||
}
|
||||
else if (typeof self !== "undefined") {
|
||||
return self;
|
||||
}
|
||||
return fallbackWindow;
|
||||
}
|
||||
exports.locateWindow = locateWindow;
|
||||
Reference in New Issue
Block a user