Package Exports
- jisg
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jisg) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
JavaScript Integer Sequence Generators
Implementations of select OEIS integer sequences in JavaScript, portially inspired by intseq.
How to use
- Install
yarn add jisg
- Use
import jisg from 'jisg'
const generator = jisg.A000045()
for (let i=0; i<43; i++) {
console.log(generator.next().value)
}Commands
yarn check: Checking the updates of all your dependenciesyarn lint: Linting via ESLintyarn clean: Clean the./distfolderyarn build: Clean and buildsrctodistyarn test: Run tests viaJestyarn test --coverage: Generates test coverage report viaJestyarn example: Run example to test transpiled codeyarn prepare: Clean, lint, test then buildyarn publish: Interactive check, clean, test, bumping version, tag commits, push repo and publish