applause icon indicating copy to clipboard operation
applause copied to clipboard

add support for async replace fn

Open bcherny opened this issue 9 years ago • 1 comments

ie.

{
  match: /foo/g,
  replacement: (_, foo) => new Promise((resolve, reject) => {
      someFileystemIO(foo, buf => resolve(buf))
  })
}

bcherny avatar Oct 26 '15 02:10 bcherny

Good one, adding soon ^^

outaTiME avatar Oct 26 '15 02:10 outaTiME