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