UNPKG

ya-driver

Version:

The driver support Ya GUI or Ya cli. docker image

18 lines (17 loc) 260 B
/** * Record or print log info */ function log (...args) { console.log(...args); }; function error (...args) { console.error(...args); }; function warn (...args) { console.warn(...args); }; module.exports = { log, error, warn };