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

@aryth/rank-vector

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aryth/rank-vector - npm Package Compare versions

Comparing version 0.1.4 to 0.1.7

2

dist/index.cjs.js

@@ -14,3 +14,3 @@ 'use strict';

const sorted = (!filter ? ar.slice() : ar.filter(filter)).sort(comparer);
return ar.map(x => sorted.indexOf(x));
return ar.map(x => (x = sorted.indexOf(x)) >= 0 ? x : NaN);
};

@@ -17,0 +17,0 @@ /**

@@ -10,3 +10,3 @@ /**

const sorted = (!filter ? ar.slice() : ar.filter(filter)).sort(comparer);
return ar.map(x => sorted.indexOf(x));
return ar.map(x => (x = sorted.indexOf(x)) >= 0 ? x : NaN);
};

@@ -13,0 +13,0 @@ /**

{
"name": "@aryth/rank-vector",
"version": "0.1.4",
"version": "0.1.7",
"description": "A math util library",

@@ -32,3 +32,3 @@ "main": "dist/index.cjs.js",

"homepage": "https://github.com/hoyeungw/aryth#readme",
"gitHead": "2c0b384c43dbc6ffd24cb7d4d839bae7883d8ca5"
"gitHead": "368b5d3dedb249b0aabd6bbe3fb76f6eb738d62f"
}

@@ -0,0 +0,0 @@ # @aryth/rank-vector

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