Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@proficient/ds

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@proficient/ds - npm Package Compare versions

Comparing version 0.1.0 to 0.2.0

lib/classes/FrequencyTable.d.ts

7

lib/index.d.ts

@@ -1,4 +0,3 @@

export * from './api';
export { EmptyCollectionError } from './EmptyCollectionError';
export { ImplementationError } from './ImplementationError';
export { SLLQueue } from './SLLQueue';
export * from './classes';
export * from './errors';
export * from './interfaces';

@@ -13,10 +13,5 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.SLLQueue = exports.ImplementationError = exports.EmptyCollectionError = void 0;
__exportStar(require("./api"), exports);
var EmptyCollectionError_1 = require("./EmptyCollectionError");
Object.defineProperty(exports, "EmptyCollectionError", { enumerable: true, get: function () { return EmptyCollectionError_1.EmptyCollectionError; } });
var ImplementationError_1 = require("./ImplementationError");
Object.defineProperty(exports, "ImplementationError", { enumerable: true, get: function () { return ImplementationError_1.ImplementationError; } });
var SLLQueue_1 = require("./SLLQueue");
Object.defineProperty(exports, "SLLQueue", { enumerable: true, get: function () { return SLLQueue_1.SLLQueue; } });
__exportStar(require("./classes"), exports);
__exportStar(require("./errors"), exports);
__exportStar(require("./interfaces"), exports);
//# sourceMappingURL=index.js.map

@@ -1,2 +0,2 @@

import type { Collection } from '../api';
import type { Collection } from '../interfaces';
export declare abstract class AbstractCollection<E> implements Collection<E> {

@@ -3,0 +3,0 @@ get isEmpty(): boolean;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractCollection = void 0;
const EmptyCollectionError_1 = require("../EmptyCollectionError");
const ImplementationError_1 = require("../ImplementationError");
const errors_1 = require("../errors");
class AbstractCollection {

@@ -35,6 +34,6 @@ get isEmpty() {

throwEmptyCollectionError() {
throw new EmptyCollectionError_1.EmptyCollectionError();
throw new errors_1.EmptyCollectionError();
}
throwImplementationError() {
throw new ImplementationError_1.ImplementationError();
throw new errors_1.ImplementationError();
}

@@ -41,0 +40,0 @@ }

{
"name": "@proficient/ds",
"version": "0.1.0",
"version": "0.2.0",
"description": "High-quality and essential Typescript data structures",

@@ -40,3 +40,3 @@ "keywords": [

},
"gitHead": "ff2cb30962b60bce0be86334776806df53f4e0d7"
"gitHead": "b244c3ff42659af3ba48d717a44e33f1d6addd51"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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