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

@cocreate/utils

Package Overview
Dependencies
Maintainers
1
Versions
266
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cocreate/utils - npm Package Compare versions

Comparing version 1.12.5 to 1.12.6

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [1.12.6](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.5...v1.12.6) (2022-11-28)
### Bug Fixes
* if no query.length or no search.length return true ([67d40d1](https://github.com/CoCreate-app/CoCreate-utils/commit/67d40d14d4c2c6c21aa83c6ec0aca575efeaec08))
## [1.12.5](https://github.com/CoCreate-app/CoCreate-utils/compare/v1.12.4...v1.12.5) (2022-11-28)

@@ -2,0 +9,0 @@

2

package.json
{
"name": "@cocreate/utils",
"version": "1.12.5",
"version": "1.12.6",
"description": "A simple utils component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",

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

@@ -255,4 +255,8 @@ (function (root, factory) {

return false;
if (!query.length)
return true;
if (Array.isArray(item)) return false;
if (Array.isArray(item))
return false;
for (let i = 0; i < query.length; i++) {

@@ -319,3 +323,4 @@ let fieldValue = item[query[i].name];

const operator = searches['type']
if (!search.length)
return true
for (var key in data) {

@@ -322,0 +327,0 @@ let value = data[key];

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