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

zaq

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zaq - npm Package Compare versions

Comparing version 1.2.7 to 1.2.8

2

package.json
{
"name": "zaq",
"version": "1.2.7",
"version": "1.2.8",
"description": "Yet another fun little logging utility.",

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

@@ -35,2 +35,3 @@ var zaq = require('./zaq.js');

zaq.time('50ms elapsed.');
zaq.debug('Some debug info...');
zaq.flag('lol test');

@@ -37,0 +38,0 @@ zaq.divider("Check sizes...", { space: 2, lineSymbol: ':', centered: true });

@@ -8,3 +8,3 @@ const fs = require('fs');

const zaq = {
version: '1.2.7',
version: '1.2.8',
loggers: [ { handler: console.log } ]

@@ -56,2 +56,3 @@ };

zaq.time = (text, obj) => zaq.logMessage({ style: 'grey', prefix: '◔ TIME:', level: 'info' }, { text, obj });
zaq.debug = (text, obj) => zaq.logMessage({ style: 'magenta', prefix: '◆ DEBUG:', level: 'debug' }, { text, obj });
zaq.pretty = (content) => JSON.stringify(content, null,' ');

@@ -58,0 +59,0 @@ zaq.space = (content, amount = 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