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

helpful-functions

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helpful-functions - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"name": "helpful-functions",
"version": "1.0.2",
"version": "1.0.3",
"description": "",

@@ -5,0 +5,0 @@ "main": "dist/",

@@ -20,4 +20,32 @@ /**

/**
* 10 good colors that work together
*/
export let scheme1 = [
"#001219",
"#005f73",
"#0a9396",
"#94d2bd",
"#e9d8a6",
"#ee9b00",
"#ca6702",
"#bb3e03",
"#ae2012",
"#9b2226",
];
/**
* This prints the string with the colors in the console
*
* @param array of colors
*
*/
export const logColors = (arrayOfColors: string[]): void => {
arrayOfColors.forEach((color) => {
console.log(`%c ${color}`, `color: ${color}`);
});
};
// const main = () => {
// };
// main();
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