You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const{replace}=require('@tugrul/async-replace');consttext='the [example.com] website is the best website but [example.org] is better one';constpattern=/\[([^\]]+)\]/g// concurrency limiting to avoid resource saturationconstlimit=5;asyncfunctionaddStatusCode(text){returnreplace(text,pattern,async(match,[domain])=>{const{status}=awaitfetch('https://'+domain);return'['+domain+' ('+status+')]';},limit);}// the [example.com (200)] website is the best website but [example.org (200)] is better oneaddStatusCode(text).then(result=>console.log(result));