Update frontmatter data

This commit is contained in:
Angelos Chalaris
2023-04-28 22:29:23 +03:00
parent 705e4e097d
commit 8850e3dfbe
577 changed files with 1731 additions and 1678 deletions

View File

@ -1,10 +1,10 @@
---
title: Run function asynchronously
tags: browser,function,promise
type: snippet
tags: [browser,function,promise]
excerpt: Runs a function in a separate thread by using a Web Worker.
cover: purple-sunset
firstSeen: 2018-01-02T02:17:52+02:00
lastUpdated: 2020-10-22T20:24:30+03:00
dateModified: 2020-10-22T20:24:30+03:00
---
Runs a function in a separate thread by using a [Web Worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers), allowing long running functions to not block the UI.