Briefly, you cannot and (for a different reason) you should not.
The IsbnVerifierTest class defines the API; the method must be
isValidIsbn: aString
and it MUST be on the instance side.
The reason why you shouldn't is that an empty string should NOT
be a special case.�� This is a problem where the design style
described by Dijkstra in "A Discipline of Programming"
and further fleshed out by Reynolds and Gries in related books
pays off.�� You want to inspect all the characters of the string
once each in a single left-to-right loop.