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

kittysay

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kittysay - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

2

bin/catsay.js

@@ -8,3 +8,3 @@ #!/usr/bin/env node

if (require && module && require.main === module) {
catsay(process.argv[2]);
catsay(process.argv[2], true);
}

@@ -26,4 +26,8 @@ const wrapText = require("wrap-text");

function catsay(string) {
console.log(renderBubble(string || "") + renderCat());
function catsay(string, log = false) {
const say = renderBubble(string || "") + renderCat();
if (log) {
console.log(say);
}
return say;
}

@@ -34,3 +38,3 @@

if (require && module && require.main === module) {
catsay(process.argv[2]);
catsay(process.argv[2], true);
}
{
"name": "kittysay",
"version": "1.0.3",
"version": "1.0.4",
"description": "nononono",

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

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