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

@keystonejs/utils

Package Overview
Dependencies
Maintainers
6
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keystonejs/utils - npm Package Compare versions

Comparing version 5.1.2 to 5.1.3

8

CHANGELOG.md
# @keystonejs/utils
## 5.1.3
### Patch Changes
- [`38f88b62`](https://github.com/keystonejs/keystone/commit/38f88b62d9592d91b56528d4d9c40e9399440c4a) [#2144](https://github.com/keystonejs/keystone/pull/2144) - Upgraded all @babel/\* dependencies.
* [`f3ea15f8`](https://github.com/keystonejs/keystone/commit/f3ea15f86f7bbd08abddcf3a63c5c66e86693d29) [#2189](https://github.com/keystonejs/keystone/pull/2189) - Upgraded prettier to 1.19.1 and formatted code accordingly.
## 5.1.2

@@ -4,0 +12,0 @@

4

package.json
{
"name": "@keystonejs/utils",
"description": "Common utility functions used throughout @keystonejs packages.",
"version": "5.1.2",
"version": "5.1.3",
"author": "The KeystoneJS Development Team",

@@ -15,3 +15,3 @@ "license": "MIT",

"dependencies": {
"@babel/runtime": "^7.7.4",
"@babel/runtime": "^7.7.7",
"p-is-promise": "^3.0.0",

@@ -18,0 +18,0 @@ "p-lazy": "^3.0.0",

@@ -63,3 +63,7 @@ import pLazy from 'p-lazy';

export const omitBy = (obj, func) => pick(obj, Object.keys(obj).filter(value => !func(value)));
export const omitBy = (obj, func) =>
pick(
obj,
Object.keys(obj).filter(value => !func(value))
);

@@ -66,0 +70,0 @@ export const omit = (obj, keys) => omitBy(obj, value => keys.includes(value));

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