Socket
Socket
Sign inDemoInstall

@smithy/abort-controller

Package Overview
Dependencies
2
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.0.16 to 2.1.0

14

dist-cjs/AbortController.js

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

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbortController = void 0;
const AbortSignal_1 = require("./AbortSignal");
class AbortController {
constructor() {
this.signal = new AbortSignal_1.AbortSignal();
}
abort() {
this.signal.abort();
}
}
exports.AbortController = AbortController;
module.exports = require("./index.js");

@@ -1,24 +0,1 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbortSignal = void 0;
class AbortSignal {
constructor() {
this.onabort = null;
this._aborted = false;
Object.defineProperty(this, "_aborted", {
value: false,
writable: true,
});
}
get aborted() {
return this._aborted;
}
abort() {
this._aborted = true;
if (this.onabort) {
this.onabort(this);
this.onabort = null;
}
}
}
exports.AbortSignal = AbortSignal;
module.exports = require("./index.js");

88

dist-cjs/index.js

@@ -1,5 +0,83 @@

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./AbortController"), exports);
tslib_1.__exportStar(require("./AbortSignal"), exports);
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, {
AbortController: () => AbortController,
AbortHandler: () => import_types.AbortHandler,
AbortSignal: () => AbortSignal,
IAbortController: () => import_types.AbortController,
IAbortSignal: () => import_types.AbortSignal
});
module.exports = __toCommonJS(src_exports);
// src/AbortController.ts
// src/AbortSignal.ts
var import_types = require("@smithy/types");
var _AbortSignal = class _AbortSignal {
constructor() {
this.onabort = null;
this._aborted = false;
Object.defineProperty(this, "_aborted", {
value: false,
writable: true
});
}
/**
* Whether the associated operation has already been cancelled.
*/
get aborted() {
return this._aborted;
}
/**
* @internal
*/
abort() {
this._aborted = true;
if (this.onabort) {
this.onabort(this);
this.onabort = null;
}
}
};
__name(_AbortSignal, "AbortSignal");
var AbortSignal = _AbortSignal;
// src/AbortController.ts
var _AbortController = class _AbortController {
constructor() {
this.signal = new AbortSignal();
}
abort() {
this.signal.abort();
}
};
__name(_AbortController, "AbortController");
var AbortController = _AbortController;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
AbortController,
AbortHandler,
AbortSignal,
IAbortController,
IAbortSignal
});
{
"name": "@smithy/abort-controller",
"version": "2.0.16",
"version": "2.1.0",
"description": "A simple abort controller library",

@@ -10,3 +10,3 @@ "main": "./dist-cjs/index.js",

"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types && yarn build:types:downlevel'",
"build:cjs": "yarn g:tsc -p tsconfig.cjs.json",
"build:cjs": "node ../../scripts/inline abort-controller",
"build:es": "yarn g:tsc -p tsconfig.es.json",

@@ -28,3 +28,3 @@ "build:types": "yarn g:tsc -p tsconfig.types.json",

"dependencies": {
"@smithy/types": "^2.8.0",
"@smithy/types": "^2.9.0",
"tslib": "^2.5.0"

@@ -31,0 +31,0 @@ },

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc