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

absurdum

Package Overview
Dependencies
Maintainers
1
Versions
177
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

absurdum - npm Package Compare versions

Comparing version 0.53.0 to 0.53.1

6

dist/absurdum.esm.js

@@ -692,4 +692,6 @@ /**

function tap (array, func) {
array.forEach(x => func(x));
return array;
return array.reduce((acc, cur) => {
func(cur);
return [...acc, cur];
}, []);
}

@@ -696,0 +698,0 @@

{
"name": "absurdum",
"version": "0.53.0",
"version": "0.53.1",
"description": "Reductio Ad Absurdum - The Ridiculous Application of Reduce",

@@ -5,0 +5,0 @@ "keywords": [

@@ -18,6 +18,8 @@ /**

function tap (array, func) {
array.forEach(x => func(x));
return array;
return array.reduce((acc, cur) => {
func(cur);
return [...acc, cur];
}, []);
}
export { tap };

Sorry, the diff of this file is not supported yet

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