setup-python/node_modules/husky/lib/debug.js

9 lines
254 B
JavaScript
Raw Normal View History

2019-06-27 08:12:00 +07:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function debug(...args) {
if (['1', 'true'].includes(process.env.HUSKY_DEBUG || '')) {
console.log('husky:debug', ...args);
}
}
exports.default = debug;