Are there plans to identify async functions? I've been doing checks with example below but I am sure that it'll be a very fragile approach. ```javascript const fn = async function() {}; kindOf(fn); // function fn[Symbol.toStringTag] === 'AsyncFunction'; // true ```