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

rjutils-collection

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rjutils-collection - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "rjutils-collection",
"version": "1.0.1",
"version": "1.0.2",
"description": "Easy and Lightweight Utilities",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -40,3 +40,2 @@ const path = require('node:path')

* Generate a Random Boolean
*
*/

@@ -66,3 +65,23 @@ randomBol() {

return string
},
/**
* Generate a Spinner
*/
spinner: class spinner {
constructor() {
this.state = 0
this.states = [
'/', '-',
'\\', '|'
]
}
get() {
if (this.state >= 4) this.state = 0
this.state++
return this.states[this.state-1]
}
}
}
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