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
Current signature: function byte(s: string, i?: number, j?: number): number;
Should be instead: /** @tuplereturn */ function byte(s: string, i?: number, j?: number): number[];
Since string.byte returns a tuple of numbers, one for each character in the specified range.