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

@yamada-ui/use-timeout

Package Overview
Dependencies
Maintainers
1
Versions
554
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@yamada-ui/use-timeout - npm Package Compare versions

Comparing version 0.0.0-dev-20230606151107 to 0.0.0-dev-20230612191903

8

dist/index.js

@@ -33,7 +33,7 @@ "use strict";

return void 0;
let id = null;
id = window.setTimeout(func, delay);
let timeoutId = null;
timeoutId = window.setTimeout(func, delay);
return () => {
if (id)
window.clearTimeout(id);
if (timeoutId)
window.clearTimeout(timeoutId);
};

@@ -40,0 +40,0 @@ }, [delay, func]);

{
"name": "@yamada-ui/use-timeout",
"version": "0.0.0-dev-20230606151107",
"version": "0.0.0-dev-20230612191903",
"description": "Yamada UI useTimeout custom hook",

@@ -27,3 +27,3 @@ "keywords": [

"dependencies": {
"@yamada-ui/utils": "0.0.0-dev-20230606151107"
"@yamada-ui/utils": "0.1.1"
},

@@ -30,0 +30,0 @@ "devDependencies": {

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