7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
import { affiliations } from '../data'
|
|
|
|
onmessage = (e) => {
|
|
if (e.data === 'LOAD') {
|
|
self.postMessage(affiliations)
|
|
}
|
|
}
|