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.5 to 1.2.6

2

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

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

@@ -1,10 +0,10 @@

const jawn = require('node-jawn');
const fs = require('fs');
const path = require('path');
const chalk = require('chalk');
const _ = require('underscore');
const path = require('path');
const moment = require('moment');
const fs = require('fs');
const chalk = require('chalk');
const stripAnsi = require('strip-ansi');
const zaq = {
version: '1.2.5',
version: '1.2.6',
verbose: true,

@@ -16,4 +16,5 @@ loggers: [ { handler: console.log } ]

zaq.loggers.forEach(({ handler, options = {} }) => {
let { timestamps, levels } = options;
let { timestamps, levels, stripColors } = options;
if (timestamps) input = (chalk.dim(moment().format('l LTS '))) + input;
if (stripColors) input = stripAnsi(input);
if (levels && levels.indexOf(level) < 0) return;

@@ -20,0 +21,0 @@ if (handler) handler(input);

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