Nest all content into snippets
This commit is contained in:
23
snippets/js/s/is-async-function.md
Normal file
23
snippets/js/s/is-async-function.md
Normal file
@ -0,0 +1,23 @@
|
||||
---
|
||||
title: Value is async function
|
||||
type: snippet
|
||||
language: javascript
|
||||
tags: [type,function]
|
||||
author: chalarangelo
|
||||
cover: interior-12
|
||||
dateModified: 2020-10-20T11:21:07+03:00
|
||||
---
|
||||
|
||||
Checks if the given argument is an `async` function.
|
||||
|
||||
- Use `Object.prototype.toString()` and `Function.prototype.call()` and check if the result is `'[object AsyncFunction]'`.
|
||||
|
||||
```js
|
||||
const isAsyncFunction = val =>
|
||||
Object.prototype.toString.call(val) === '[object AsyncFunction]';
|
||||
```
|
||||
|
||||
```js
|
||||
isAsyncFunction(function() {}); // false
|
||||
isAsyncFunction(async function() {}); // true
|
||||
```
|
||||
Reference in New Issue
Block a user