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

@johmun/vue-tags-input

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@johmun/vue-tags-input - npm Package Compare versions

Comparing version 1.5.6 to 1.5.7

2

package.json
{
"name": "@johmun/vue-tags-input",
"version": "1.5.6",
"version": "1.5.7",
"author": "Johannes Munari <johannesm@hotmail.de>",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -39,4 +39,8 @@ // The file contains the main application logic

});
if (!this.autocompleteFilterDuplicates) return is;
return is.filter(i => !this.tagsCopy.find(t => t.text === i.text));
const filtering = tag => this.isDuplicate
? !this.isDuplicate(this.tagsCopy, tag)
: !this.tagsCopy.find(t => t.text === tag.text);
return is.filter(filtering);
},

@@ -43,0 +47,0 @@ },

Sorry, the diff of this file is not supported yet

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