blob: 5c7b55bad41552697ce4643a7b97da9417046c54 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
self.onmessage = (e) => {
if (e.data === 'ping') {
self.postMessage('pong');
}
};