Appearance
function isPrime(n): boolean;
Prime check. 质数判断。
n
number
boolean
True if prime / 是质数则为 true
isPrime(7) // => true
1.0.0