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

righto

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

righto - npm Package Compare versions

Comparing version 3.0.0 to 3.0.1

4

index.js

@@ -426,2 +426,6 @@ var abbott = require('abbott');

if(!values.length){
return righto.from(undefined);
}
values = values.slice();

@@ -428,0 +432,0 @@

2

package.json
{
"name": "righto",
"version": "3.0.0",
"version": "3.0.1",
"main": "index.js",

@@ -5,0 +5,0 @@ "directories": {

@@ -243,2 +243,4 @@ # Righto

If no tasks are passed, the final result will be `undefined`.
No reducer passed:

@@ -245,0 +247,0 @@ ```javascript

@@ -437,2 +437,13 @@ var test = require('tape'),

test('righto.reduce no items', function(t){
t.plan(2);
var result = righto.reduce([]);
result(function(error, finalResult){
t.notOk(error, 'no error');
t.equal(finalResult, undefined, 'Got correct final result');
});
});
test('righto().get(key)', function(t){

@@ -439,0 +450,0 @@ t.plan(4);

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