Socket
Socket
Sign inDemoInstall

@aws-sdk/util-locate-window

Package Overview
Dependencies
Maintainers
5
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/util-locate-window - npm Package Compare versions

Comparing version 3.465.0 to 3.495.0

48

dist-cjs/index.js

@@ -1,13 +0,39 @@

Object.defineProperty(exports, "__esModule", { value: true });
exports.locateWindow = void 0;
const fallbackWindow = {};
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
locateWindow: () => locateWindow
});
module.exports = __toCommonJS(src_exports);
var fallbackWindow = {};
function locateWindow() {
if (typeof window !== "undefined") {
return window;
}
else if (typeof self !== "undefined") {
return self;
}
return fallbackWindow;
if (typeof window !== "undefined") {
return window;
} else if (typeof self !== "undefined") {
return self;
}
return fallbackWindow;
}
exports.locateWindow = locateWindow;
__name(locateWindow, "locateWindow");
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
locateWindow
});
{
"name": "@aws-sdk/util-locate-window",
"version": "3.465.0",
"version": "3.495.0",
"scripts": {
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:cjs": "node ../../scripts/compilation/inline util-locate-window",
"build:es": "tsc -p tsconfig.es.json",

@@ -8,0 +8,0 @@ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc