UNPKG

@small-tech/node-pebble

Version:

A Node.js wrapper for Let’s Encrypt’s Pebble (“a small RFC 8555 ACME test server not suited for a production certificate authority”).

12 lines (10 loc) 169 B
/** Conditionally log to console. @param {any[]} args */ export default function log (...args) { if (process.env.QUIET) { return } console.log(...args) }