gitlab-org--gitlab-foss/app/assets/javascripts/vue_shared/components/source_viewer/workers/highlight.js

11 lines
379 B
JavaScript

import { highlight } from './highlight_utils';
/**
* A webworker for highlighting large amounts of content with Highlight.js
*/
// eslint-disable-next-line no-restricted-globals
self.addEventListener('message', ({ data: { fileType, content, language } }) => {
// eslint-disable-next-line no-restricted-globals
self.postMessage(highlight(fileType, content, language));
});