@devexperts/utils
Advanced tools
Comparing version 0.14.1 to 0.15.0
@@ -81,4 +81,4 @@ import Emitter from '../emitter/Emitter'; | ||
*/ | ||
private _requireWriteAccess(); | ||
private _requireWriteAccess; | ||
} | ||
export default Collection; |
@@ -1,6 +0,15 @@ | ||
export declare const hasOwnProperty: { | ||
(v: string): boolean; | ||
(v: PropertyKey): boolean; | ||
}; | ||
/** | ||
* Copyright (c) 2013-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @providesModule shallowEqual | ||
* @typechecks | ||
* @flow | ||
*/ | ||
export declare const hasOwnProperty: (v: string | number | symbol) => boolean; | ||
/** | ||
* inlined Object.is polyfill to avoid requiring consumers ship their own | ||
@@ -7,0 +16,0 @@ * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is |
@@ -1,2 +0,2 @@ | ||
import { ObjectOmit } from 'typelevel-ts'; | ||
import { Omit } from 'typelevel-ts'; | ||
/** | ||
@@ -13,3 +13,3 @@ * Generates new object with keys mapped with template | ||
export declare function deepEqual(objA: object, objB: object): boolean; | ||
export declare type PartialKeys<T extends {}, K extends keyof T> = ObjectOmit<T, K> & Partial<Pick<T, K>>; | ||
export declare type PartialKeys<T extends {}, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; | ||
export declare const isNotNullable: <T>(value: T | null | undefined) => value is T; |
{ | ||
"name": "@devexperts/utils", | ||
"version": "0.14.1", | ||
"version": "0.15.0", | ||
"description": "", | ||
@@ -29,3 +29,3 @@ "main": "lib/index.js", | ||
"tslib": "^1.9.0", | ||
"typelevel-ts": "^0.2.2" | ||
"typelevel-ts": "^0.3.1" | ||
}, | ||
@@ -36,5 +36,5 @@ "peerDependencies": { | ||
"devDependencies": { | ||
"@devexperts/tools": "^0.14.1", | ||
"@devexperts/tools": "^0.15.0", | ||
"fp-ts": "^1.2.0" | ||
} | ||
} |
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
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
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
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
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
77898
67
1629
+ Addedtypelevel-ts@0.3.5(transitive)
- Removedtypelevel-ts@0.2.4(transitive)
Updatedtypelevel-ts@^0.3.1