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

utilium

Package Overview
Dependencies
Maintainers
0
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utilium - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

5

dist/list.d.ts
import { EventEmitter } from 'eventemitter3';
export declare class List<T> extends EventEmitter<'update'> implements RelativeIndexable<T> {
export declare class List<T> extends EventEmitter<{
update: [];
add: [T];
}> implements RelativeIndexable<T> {
readonly [Symbol.toStringTag] = "List";

@@ -4,0 +7,0 @@ constructor(values?: readonly T[] | Iterable<T> | null);

1

dist/list.js

@@ -81,2 +81,3 @@ import { EventEmitter } from 'eventemitter3';

this.emit('update');
this.emit('add', value);
return this;

@@ -83,0 +84,0 @@ }

{
"name": "utilium",
"version": "1.1.2",
"version": "1.1.3",
"description": "Typescript utilities",

@@ -5,0 +5,0 @@ "funding": {

import { EventEmitter } from 'eventemitter3';
export class List<T> extends EventEmitter<'update'> implements RelativeIndexable<T> {
export class List<T>
extends EventEmitter<{
update: [];
add: [T];
}>
implements RelativeIndexable<T>
{
public readonly [Symbol.toStringTag] = 'List';

@@ -104,2 +110,3 @@

this.emit('update');
this.emit('add', value);
return this;

@@ -106,0 +113,0 @@ }

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