2017-09-05 05:26:50 +00:00
|
|
|
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
2017-03-23 17:11:31 +00:00
|
|
|
var SystemJS = require('systemjs');
|
|
|
|
SystemJS.config({
|
|
|
|
meta: {
|
|
|
|
'../../xlsx.js': { format: 'global' },
|
|
|
|
'../../dist/xlsx.core.min.js': { format: 'global' },
|
|
|
|
'../../dist/xlsx.full.min.js': { format: 'global' },
|
|
|
|
},
|
|
|
|
paths: {
|
|
|
|
'npm:': '/usr/local/lib/node_modules/'
|
|
|
|
},
|
|
|
|
map: {
|
|
|
|
'xlsx': 'npm:xlsx/xlsx.js',
|
|
|
|
'fs': '@node/fs',
|
2017-04-09 04:03:19 +00:00
|
|
|
'crypto': '@node/crypto',
|
|
|
|
'stream': '@node/stream'
|
2017-03-23 17:11:31 +00:00
|
|
|
}
|
|
|
|
});
|
2017-08-08 20:31:17 +00:00
|
|
|
SystemJS.import('./app.node.js');
|