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

easy-confetti

Package Overview
Dependencies
Maintainers
0
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-confetti - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "easy-confetti",
"version": "0.0.1",
"version": "0.0.2",
"description": "EasyConfetti is designed to create confetti animations and provides flexible, customisable confetti animations that can be easily integrated into a web page to create visual effects.",

@@ -5,0 +5,0 @@ "author": "ux-ui.pro",

@@ -67,3 +67,3 @@ <br>

easyConfetti.init();
easyConfetti.sprinkle();
```

@@ -76,7 +76,13 @@ <br>

const sprinkleMultiple = (times, interval) => {
Array.from({ length: times }).forEach((_, i) => {
setTimeout(() => {
easyConfetti.sprink();
}, i * interval);
});
let count = 0;
const intervalId = setInterval(() => {
easyConfetti.sprinkle();
count++;
if (count === times) {
clearInterval(intervalId);
}
}, interval);
};

@@ -83,0 +89,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