Fire

Results 11 comments of Fire

Why not just have number arguments for start, end, and step, like how Spring hasit?

Can't you just use a ForValues with a number array? ```luau local function range(start, ending, step) local arr = {} -- i forgot the syntax but for i = start,...

My I recommend the name Switch or Toggle to match other libraries (e.g. Vide has the switch utility)

Personally I lean towards the pipe API and not extending the metatable for state objects becauae it's forwards compatible with #301

Also I'm pretty sure this doesn't happen with multi-line comments

Adding on to this, homepage images seem to have a different hue, being slightly more pink, than the background color, being slightly more purple: ![Ảnh màn hình 2024-09-01 lúc 12...

i'm a genius and committed to main 😭

Isn't unit tests blocked by #421? I don't think it'll make sense writing tests in TestEZ when in the near future, it'll be rewritten completely.

Somewhat far-fetched suggestion for `scope:insert` as that's more Luau-like (and aligns with `table.insert`): ```Luau local ins = scope:insert(Instance.new("Part", workspace)) local conn, ins = scope:insert( RunService.Heartbeat:Connnect(doUpdate), Instance.new("Part", workspace) ) ``` Also...