You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, unlike the other number range methods N.õ() can only accept f as its first or third argument but not its second (e.g. Aõ1_+1 - expected output [2,3,4,5,6,7,8,9,10,11]).
It seems that this is due to the other methods relying on N.o() but N.õ being its own, self-contained method and should be fixable by adding:
if (typeof y === "function")
f = y, y = undefined;
The text was updated successfully, but these errors were encountered:
Currently, unlike the other number range methods
N.õ()
can only acceptf
as its first or third argument but not its second (e.g.Aõ1_+1
- expected output[2,3,4,5,6,7,8,9,10,11]
).It seems that this is due to the other methods relying on
N.o()
butN.õ
being its own, self-contained method and should be fixable by adding:The text was updated successfully, but these errors were encountered: