Skip to content

8.6.0 — Valve Vanguard

Choose a tag to compare

@antonmedv antonmedv released this 23 Jun 10:10
· 98 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