Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

0.6.0-beta.1

Latest

Choose a tag to compare

@imhele imhele released this 26 Oct 03:36
· 14 commits to master since this release

Syntax optimization:

  • for (v of []) => for (i = 0; i < [].length; i++)
  • [].reverse() => for (i = [].length; i >= 0; i--)