mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 07:17:50 +00:00
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
self.console || (self.console = { 'log': function() {} });
|
|
|
|
addEventListener('message', function(e) {
|
|
if (e.data) {
|
|
try {
|
|
importScripts('../' + e.data);
|
|
} catch(e) {
|
|
self._ = { 'VERSION': e.message };
|
|
}
|
|
postMessage(_.VERSION);
|
|
}
|
|
}, false);
|