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

@thisisagile/easy

Package Overview
Dependencies
Maintainers
2
Versions
1276
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thisisagile/easy - npm Package Compare versions

Comparing version 1.14.8 to 1.14.9

1

dist/types/List.d.ts

@@ -11,2 +11,3 @@ import { GetProperty } from './Constructor';

mapDefined: <U>(f: (value: T, index: number, array: T[]) => U, params?: unknown) => List<U>;
distinct: () => List<T>;
filter: (p: (value: T, index: number, array: T[]) => unknown, params?: unknown) => List<T>;

@@ -13,0 +14,0 @@ concat: (...items: (T | ConcatArray<T>)[]) => List<T>;

@@ -19,2 +19,3 @@ "use strict";

this.mapDefined = (f, params) => this.map(f, params).filter(i => Is_1.isDefined(i));
this.distinct = () => this.filter((i, index) => this.indexOf(i) === index);
this.filter = (p, params) => super.filter(p, params);

@@ -21,0 +22,0 @@ this.concat = (...items) => super.concat(...items);

2

package.json
{
"name": "@thisisagile/easy",
"version": "1.14.8",
"version": "1.14.9",
"description": "Straightforward library for building domain-driven microservice architectures",

@@ -5,0 +5,0 @@ "author": "Sander Hoogendoorn",

@@ -22,2 +22,4 @@ import { toArray } from './Array';

distinct = (): List<T> => this.filter((i, index) => this.indexOf(i) === index);
filter = (p: (value: T, index: number, array: T[]) => unknown, params?: unknown): List<T> => super.filter(p, params) as List<T>;

@@ -24,0 +26,0 @@

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