@stryker-mutator/util
Advanced tools
Comparing version 4.0.0-beta.1 to 4.0.0-beta.2
@@ -6,2 +6,10 @@ # Change Log | ||
# [4.0.0-beta.2](https://github.com/stryker-mutator/stryker/compare/v4.0.0-beta.1...v4.0.0-beta.2) (2020-08-07) | ||
**Note:** Version bump only for package @stryker-mutator/util | ||
# [4.0.0-beta.1](https://github.com/stryker-mutator/stryker/compare/v4.0.0-beta.0...v4.0.0-beta.1) (2020-07-17) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@stryker-mutator/util", | ||
"version": "4.0.0-beta.1", | ||
"version": "4.0.0-beta.2", | ||
"description": "Contains utilities for Stryker, the mutation testing framework for JavaScript and friends", | ||
@@ -35,3 +35,3 @@ "main": "src/index.js", | ||
}, | ||
"gitHead": "2973eef59afb41e8ee2da8d08501c6cf3d086e8e" | ||
"gitHead": "7095548fe9157367b77e69f301a1259222983c89" | ||
} |
@@ -1,2 +0,2 @@ | ||
declare type ImmutablePrimitive = undefined | null | boolean | string | number | ((...args: any) => any); | ||
declare type ImmutablePrimitive = undefined | null | boolean | string | number | ((...args: any[]) => any); | ||
export declare type Immutable<T> = T extends ImmutablePrimitive ? T : T extends Array<infer U> ? ImmutableArray<U> : T extends Map<infer K, infer V> ? ImmutableMap<K, V> : T extends Set<infer M> ? ImmutableSet<M> : ImmutableObject<T>; | ||
@@ -3,0 +3,0 @@ export declare type ImmutableArray<T> = ReadonlyArray<Immutable<T>>; |
@@ -1,2 +0,2 @@ | ||
type ImmutablePrimitive = undefined | null | boolean | string | number | ((...args: any) => any); | ||
type ImmutablePrimitive = undefined | null | boolean | string | number | ((...args: any[]) => any); | ||
@@ -3,0 +3,0 @@ export type Immutable<T> = T extends ImmutablePrimitive |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
403424