New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

idx

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

idx - npm Package Compare versions

Comparing version 1.2.0 to 1.5.0

3

package.json
{
"name": "idx",
"version": "1.2.0",
"version": "1.5.0",
"description": "Utility function for traversing properties on objects and arrays.",

@@ -25,4 +25,5 @@ "main": "lib/idx.js",

"jest": {
"testEnvironment": "node",
"rootDir": "src"
}
}

@@ -1,2 +0,2 @@

# idx
# idx [![Circle Status](https://circleci.com/gh/facebookincubator/idx/tree/master.svg?style=shield&circle-token=da61f3cf105f22309c8ca0ba4482daa538bf5349)](https://circleci.com/gh/facebookincubator/idx)

@@ -13,3 +13,3 @@ `idx` is a utility function for traversing properties on objects and arrays.

```
```javascript
const props: {

@@ -25,3 +25,3 @@ user: ?{

```
```javascript
props.user &&

@@ -35,3 +35,3 @@ props.user.friends &&

```
```javascript
idx(props, _ => _.user.friends[0].friends)

@@ -49,3 +49,3 @@ ```

```
```javascript
props.user == null ? props.user :

@@ -52,0 +52,0 @@ props.user.friends == null ? props.user.friends :

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