Skip to content

v0.5.0-pre4-test: build: switch to released gcmodule fork

Pre-release
Pre-release
Compare
Choose a tag to compare
@CertainLach CertainLach released this 05 Jun 13:03
· 411 commits to master since this release
bde2637

Destructure improvements

  • Support destructuring of function arguments:
local myFn({field}) = field;

myFn({field: 3}) == 3
  • Object destructuring defaults
local {
  a,
  b = 20,
  c = 30, 
} = { a: 1, b: 2 };

a == 1 && b == 2 && c == 30

Release preparations

  • Remove gcmodule git dependency (replaced with forked and rebranded package)