Skip to content

8.6.0 — Valve Vanguard

Compare
Choose a tag to compare
@antonmedv antonmedv released this 23 Jun 10:10
· 22 commits to main since this release
  • Enabled thenable params processing for $ literals #1237
const a1 = $`echo foo`
const a2 = new Promise((resolve) => setTimeout(resolve, 20, ['bar', 'baz']))

await $`echo ${a1} ${a2}` // foo bar baz