chromium/third_party/blink/web_tests/external/wpt/html/infrastructure/safe-passing-of-structured-data/shared-array-buffers/resources/incrementer-worker-with-channel.js

"use strict";
importScripts("./test-incrementer.js");

self.onmessage = ({ data }) => {
  // data will be a MessagePort
  setupDestinationIncrementer(data, data);
};