cahilfoley/utils

View on GitHub
.github/ISSUE_TEMPLATE/new-function-request.md

Summary

Maintainability
Test Coverage
---
name: New Function Request
about: Create a request to have a new function added to the library

---

**New Function Name**
`functionName` <= Enter the proposed function name here (e.g. `addNumbers`)

**New Function Description**
A clear and concise description of the proposed functions purpose

**TypeScript Declaration**
A typescript declaration if you're able to provide one
```ts
function(a: number, b: number) => number
```

**Example**
An example snipped showing a use case of the proposed function
```js
addNumbers(5, 10)
// Expected output: 15
```