Socket
Socket
Sign inDemoInstall

@chakra-ui/utils

Package Overview
Dependencies
Maintainers
3
Versions
278
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/utils - npm Package Compare versions

Comparing version 0.0.0-pr-202208164521 to 0.0.0-pr-20221173648

2

dist/chakra-ui-utils.cjs.dev.js

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

return array.filter(function (eachItem) {
return eachItem !== item;
return eachItem != item;
});

@@ -50,0 +50,0 @@ }

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

return array.filter(function (eachItem) {
return eachItem !== item;
return eachItem != item;
});

@@ -50,0 +50,0 @@ }

@@ -38,3 +38,3 @@ export * from 'css-box-model';

return array.filter(function (eachItem) {
return eachItem !== item;
return eachItem != item;
});

@@ -41,0 +41,0 @@ }

{
"name": "@chakra-ui/utils",
"version": "0.0.0-pr-202208164521",
"version": "0.0.0-pr-20221173648",
"description": "Common utilties and types for Chakra UI",

@@ -5,0 +5,0 @@ "author": "Segun Adebayo <sage@adebayosegun.com>",

@@ -29,3 +29,3 @@ export function getFirstItem<T>(array: T[]): T | undefined {

export function removeItem<T>(array: T[], item: T): T[] {
return array.filter((eachItem) => eachItem !== item)
return array.filter((eachItem) => eachItem != item)
}

@@ -32,0 +32,0 @@

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