Skip to main content

checkPrime

function checkPrime
Jump to headingcheckPrime(
callback: (
err: Error | null,
result: boolean,
) => void
,
): void

Checks the primality of the candidate.

Parameters Jump to heading

Jump to headingcallback: (
err: Error | null,
result: boolean,
) => void

Return Type Jump to heading

void
Jump to headingcheckPrime(
callback: (
err: Error | null,
result: boolean,
) => void
,
): void

Parameters Jump to heading

Jump to headingcallback: (
err: Error | null,
result: boolean,
) => void

Return Type Jump to heading

void
Back to top