You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
571 B
22 lines
571 B
9 years ago
|
"use strict";
|
||
|
|
||
|
var workerUtils = require('../common/worker.js')
|
||
|
|
||
|
global.addEventListener('message', function(e){
|
||
|
var packet = e.data;
|
||
|
workerUtils.dispatchHandlers(packet, obj => postMessage(obj))
|
||
|
})
|
||
|
|
||
|
exports.getLanguageData = require('./lang.js')
|
||
|
|
||
|
exports.getCore = function(req, res){
|
||
|
if(!global.TesseractCore){
|
||
|
res.progress({ status: 'loading tesseract core' })
|
||
|
importScripts(req.workerOptions.tesseractPath)
|
||
|
res.progress({ status: 'loaded tesseract core' })
|
||
|
}
|
||
|
return TesseractCore
|
||
|
}
|
||
|
|
||
|
workerUtils.setAdapter(module.exports);
|