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

object-scan

Package Overview
Dependencies
Maintainers
1
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-scan - npm Package Compare versions

Comparing version 16.0.0 to 16.0.1

2

package.json
{
"name": "object-scan",
"version": "16.0.0",
"version": "16.0.1",
"description": "Traverse object hierarchies using matching and callbacks.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -973,3 +973,15 @@ # Object-Scan

</details>
<details><summary> <code>['**(^a$)']</code> <em>(star recursion matches roots)</em> </summary>
<!-- eslint-disable no-undef -->
```js
const haystack = [0, [{ a: 1 }, 2]];
objectScan(['**(^a$)'], {
joined: true,
useArraySelector: false
})(haystack);
// => [ '[1][1]', '[1][0].a', '[1][0]', '[0]' ]
```
</details>
## Internals

@@ -976,0 +988,0 @@

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