That's a bit of an odd case. I don't know of any native JS solution for this, but you could do the following:
function isNotNumber(subj: string): boolean {
const nr = +subj;
return isNaN(nr) || nr.toString().length !== subj.length;
}
example with tests
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…