daliborgogic / daliborgogic/functional
Move comments from README
- Dominant language
- JavaScript
- Stars
- 2
- Forks
- 1
- PR merge metrics
- No merged PRs in 30d
Description
Example
```javascript
/**
* Gets the first element of `array`.
*
* @category Array
* @param {Array} array The array to query.
* @returns {*} Returns the first element of `array`.
* @example
*
* head(['foo', 'bar'])
* // => 'foo'
*
* head([])
* // => undefined
*/
const head = arr => arr[0]
```
- [ ] array.mjs
- [ ] decorators.mjs
- [x] math.mjs
- [ ] object.mjs
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by reviewing the comment example in the README and the documentation already present in math.mjs. Then inspect array.mjs, decorators.mjs, and object.mjs, moving the relevant comments into those files until the unchecked checklist items are complete.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- javascript
- Domain
- documentation
- Issue type
- Documentation
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 50/100