I see a hint of an explanation at the very bottom of this page on StackOverflow, but no official explanation that I can find on Nim's forum or website:
"There's no longer any such proc because sequences can no longer be nil. – Jim Balter Jun 15, 2020 at 7:25"
https://stackoverflow.com/questions/48657243/how-to-test-for-an-empty-seq-in-nim
It's isNilOrEmpty. It was deprecated and later on removed. It's in the 1.0.6 docs as a deprecated proc but not in the 1.2.0 docs. Also isNilOrWhitespace was deprecated in the 1.2 docs and removed in 1.4 as mentioned in the 1.4 changelog. So only isNilOrEmpty was emitted from the changelog.
Nowadays the changelog tends to be considered more so this problem hopefully shouldn't be encountered as much.