Socket
Socket
Sign inDemoInstall

uniq

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.2 to 1.0.0

LICENSE

6

package.json
{
"name": "uniq",
"version": "0.0.2",
"version": "1.0.0",
"description": "Removes duplicates from a sorted array in place",

@@ -11,6 +11,6 @@ "main": "uniq.js",

"devDependencies": {
"tap": "~0.4.0"
"tape": "^2.12.3"
},
"scripts": {
"test": "tap test/*.js"
"test": "tape test/*.js"
},

@@ -17,0 +17,0 @@ "repository": {

var unique = require("../uniq.js")
require("tap").test("unique", function(t) {
require("tape")("unique", function(t) {

@@ -5,0 +5,0 @@ t.equals(unique([1,1,2,3,5,5,7]).join(), [1,2,3,5,7].join())

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc