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”).

8 lines (7 loc) 140 B
// Conditionally log to console. export default function log (...args) { if (process.env.QUIET) { return } console.log(...args) }