export function isPrime(value) { var start = 2; while (start <= Math.sqrt(value)) if (value % start++ < 1) return false; return value > 1; }