5ce98f6005b8a1771d91e97d583db8cdea5f9f8f
[motion.git] / public / bower_components / lodash / test / asset / worker.js
1 self.console || (self.console = { 'log': function() {} });
2
3 addEventListener('message', function(e) {
4   if (e.data) {
5     try {
6       importScripts('../' + e.data);
7     } catch (e) {
8       self._ = { 'VERSION': e.message };
9     }
10     postMessage(_.VERSION);
11   }
12 }, false);