mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 06:18:38 +09:00
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
|
|
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
||
|
|
/* Any copyright is dedicated to the Public Domain.
|
||
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
||
|
|
|
||
|
|
/* global fooBarWorker*/
|
||
|
|
/* eslint-disable no-unused-vars*/
|
||
|
|
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
var onmessage = function () {
|
||
|
|
fooBarWorker();
|
||
|
|
};
|
||
|
|
|