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

@ctx-core/object

Package Overview
Dependencies
Maintainers
1
Versions
666
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ctx-core/object - npm Package Compare versions

Comparing version 5.2.1 to 5.3.0

9

lib.js

@@ -188,2 +188,3 @@ import { _andand } from '@ctx-core/function'

* @param {...string} a1__key
* @returns {{}}
*/

@@ -201,2 +202,10 @@ export function pick(obj, ...a1__key) {

/**
* Returns a function that calls [pick](#pick) with the given `...a1__key`
* @param {...string}a1__key
* @returns {function(*=, ...[*]): {}}
*/
export function _pick(...a1__key) {
return (obj, ...a1__key__) => pick(obj, ...a1__key, ...a1__key__)
}
/**
* Returns object with picked values,

@@ -203,0 +212,0 @@ * not including including inherited property values (i.e. if hasOwnProperty is false).

4

package.json
{
"name": "@ctx-core/object",
"version": "5.2.1",
"version": "5.3.0",
"description": "ctx-core object",

@@ -30,3 +30,3 @@ "main": "lib.js",

},
"gitHead": "44e777d07ee38a01fe47429ecd4744c4221ff193"
"gitHead": "2637fd0e1d25ad0b9f4bf7db3f771b63e3a2b7ae"
}
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