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

@coderich/util

Package Overview
Dependencies
Maintainers
0
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coderich/util - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

2

package.json
{
"name": "@coderich/util",
"main": "src/index.js",
"version": "1.2.0",
"version": "1.2.1",
"publishConfig": {

@@ -6,0 +6,0 @@ "access": "public"

@@ -170,2 +170,9 @@ const FS = require('fs');

exports.traverse = (mixed, fn, info) => {
exports.map(mixed, (data) => {
const response = fn(data, info);
if (response) exports.traverse(response.value, fn, response.info);
});
};
exports.mapPromise = (mixed, fn) => {

@@ -172,0 +179,0 @@ const map = exports.map(mixed, fn);

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