unicorn-rpa
Version:
🦄 Unicorn RPA - 强大的跨域iframe自动化控制工具
13 lines (11 loc) • 375 B
JavaScript
const log = (...args) => {
if (typeof window !== 'undefined' && window.console) {
console.log('[UnicornRPA]', new Date().toISOString(), ...args);
}
};
const errorLog = (...args) => {
if (typeof window !== 'undefined' && window.console) {
console.error('[UnicornRPA]', new Date().toISOString(), ...args);
}
};
module.exports = { log, errorLog };