top | item 33845738 (no title) tazard | 3 years ago If robot0 name is AAA and uid Is BBB, and robot 1 name is BBB and uid AAA, and you call the function checkRobot('AAA'), what sort of assert exactly could differentiate between a name and a uid? discuss order hn newest roflyear|3 years ago I don't think it is possible in Typescript, but in other languages you can do assertations about custom types. Likeassert istype(whatever, MyCustomType)Which would throw an exception if whatever is not a "MyCustomType" at runtime.
roflyear|3 years ago I don't think it is possible in Typescript, but in other languages you can do assertations about custom types. Likeassert istype(whatever, MyCustomType)Which would throw an exception if whatever is not a "MyCustomType" at runtime.
roflyear|3 years ago
assert istype(whatever, MyCustomType)
Which would throw an exception if whatever is not a "MyCustomType" at runtime.