@daysnap/horn-jssdk
Version:
原生容器面向 H5 开发者提供的基于容器应用内的网页开发工具包
17 lines (16 loc) • 375 B
JavaScript
import { config } from '../config';
// 日志
export const log = (...args) => {
const { log } = config;
if (log) {
if (typeof log === 'function') {
log(...args);
}
else {
console.log(...args);
}
}
};
// 空函数
// eslint-disable-next-line @typescript-eslint/no-empty-function
export const nf = () => { };