Playground
Input:
Current Result:
print(
__TS__TypeOf(
string.sub("", 1, 1)
)
)
Expected Result:
function __TS__StringIndex(self, index)
if index <= #self then
return string.sub("", index, index)
end
end
print(
__TS__TypeOf(
__TS__StringIndex("", 1)
)
)
Playground
Input:
Current Result:
Expected Result: