this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove badges

Patrik Csak 1e8fb392 2befebd7

+1 -21
-15
.github/workflows/test.yml
··· 15 15 node-version: ${{matrix.node-version}} 16 16 - run: npm clean-install 17 17 - run: npm test 18 - coverage: 19 - name: Coverage 20 - needs: test 21 - runs-on: ubuntu-latest 22 - steps: 23 - - uses: actions/checkout@v4 24 - - uses: actions/setup-node@v4 25 - with: 26 - node-version: 22 27 - - run: npm install 28 - - uses: paambaati/codeclimate-action@v9 29 - env: 30 - CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} 31 - with: 32 - coverageCommand: npm run test:coverage:lcov
-1
.gitignore
··· 1 - coverage 2 1 distribution 3 2 node_modules
+1 -2
package.json
··· 28 28 "format": "eslint --fix && prettier --write . && sort-package-json", 29 29 "prepare": "npm run build", 30 30 "test": "eslint && prettier --check . && sort-package-json --check && ava", 31 - "test:coverage": "del-cli coverage && eslint && prettier --check . && sort-package-json --check && c8 ava", 32 - "test:coverage:lcov": "del-cli coverage && eslint && prettier --check . && sort-package-json --check && c8 --reporter=lcovonly ava" 31 + "test:coverage": "del-cli coverage && eslint && prettier --check . && sort-package-json --check && c8 ava" 33 32 }, 34 33 "dependencies": { 35 34 "random-item": "^4.0.1"
-3
readme.md
··· 1 1 # BB26 2 2 3 - [![Badge indicating number of weekly downloads of BB26 from npm package registry](https://badgen.net/npm/dw/bb26)](https://www.npmjs.com/package/bb26) 4 - [![Badge indicating percent test coverage of BB26](https://badgen.net/codeclimate/coverage/patrik-csak/BB26?label=test+coverage)](https://codeclimate.com/github/patrik-csak/BB26/test_coverage) 5 - 6 3 BB26 is a JavaScript library for working with [bijective base-26](https://en.wikipedia.org/wiki/Bijective_numeration#The_bijective_base-26_system) (BB26) numbers 7 4 8 5 ## What is bijective base-26 numeration?