aureooms/js-prime

View on GitHub
src/sieve/itop230.js

Summary

Maintainability
A
0 mins
Test Coverage
export function itop230(i) {
    return 6 * (((i / 2) | 0) + 1) - 1;
}