Blame view

online-office/src/index.js 483 Bytes
wangtao authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import './utils/math'
import { luckysheet } from './core'
import __firefox from './utils/polyfill'
// Prevent gulp warning: 'Use of eval is strongly discouraged, as it poses security risks and may cause issues with minification'
// window.evall = window.eval;
// polyfill event in firefox
if(window.addEventListener && (navigator.userAgent.indexOf("Firefox") > 0)){
    __firefox();
}
// export default luckysheet;


// use esbuild,bundle iife format
module.exports =  luckysheet