6.1.15 • Published 2 years ago
@rebelware/fib-gen-sennap v6.1.15
Linux | Windows | MacOS |
---|---|---|
fib-tools
Get the nth Number in the series
const {getNumber} = require('@bbq-beets/fib-tools')
assert.strictEqual(getNumber(8), 21)
Get a List of Numbers
const {getList} = require('@bbq-beets/fib-tools')
assert.strictDeepEqual(getList(8), [0, 1, 1, 2, 3, 5, 8, 13, 21])
Get a Sequence of Numbers
const {getSequence} = require('@bbq-beets/fib-tools')
const seq = getSequence()
for (const n of seq) {
console.log(n) // The next Fibonacci number in the sequence
}
Code Scanning Demo
This repository demonstrates an instance of CWE-020: Improper Imput Validation.
- Run through the setup flow in the security tab to enable code scanning. Commit directly to master.
- Go to actions, and confirm that the analysis has run successfully.
- Edit script.js and add this code snippet. Create a PR. Wait for validation.
function endsWith(x, y) {
return x.lastIndexOf(y) === x.length - y.length;
}
6.1.15
2 years ago
6.1.14
2 years ago
6.1.13
2 years ago
6.1.11
3 years ago
6.1.10
3 years ago
6.1.9
3 years ago
6.1.6
3 years ago
6.1.8
3 years ago
6.1.7
3 years ago
6.1.5
4 years ago
6.1.4
4 years ago
6.1.3
4 years ago
6.1.2
4 years ago
6.1.1
4 years ago
6.1.0
4 years ago
6.0.9
4 years ago
6.0.8
4 years ago
6.0.7
4 years ago
6.0.6
4 years ago
6.0.5
4 years ago
6.0.4
4 years ago
6.0.3
4 years ago
6.0.2
4 years ago
6.0.1
4 years ago
6.0.0
5 years ago
5.9.1
5 years ago
5.9.0
5 years ago