1.5.0 β€’ Published 3 years ago

essential-ts-utils v1.5.0

Weekly downloads
5
License
MIT
Repository
github
Last release
3 years ago

Essential Typescript Utils!

Essential Typescript utils is a collection of useful common used Javascript utilities written in Typescript.

You have a nice utility? Great! Contribute by sending a Pull Request!

πŸ“„ The current list

UtilsDescription
averagecalculate the average of a number array
emojiKillerremove all emojis from a string
groupBygroup an array by a property
padadd padding zero's to a number: 7 > 07
parseJsonparse json string safely with a try catch
sumsum values: 1 + 1 = 2
ucfirstuppercase the first character of a string

πŸŽ‰ How to use

import { sum, pad } from 'essential-ts-utils'

const total = sum(5, 4)
const padded = pad(7, 2)

console.log('The total of 5 + 4 equals ', total)
console.log('The zero padded value equals ', padded)

Contribution information about the tech stack

🚩 Linting

Prettier

Nicer code with prettier!

Commitlint

You might want to remove or customize Commitlint. Commitlint checks if your commit messages meet the conventional commit format. But in case you are using JIRA you might want to have a different commit message structure, example and another

To launch the commit helper:

yarn commit

πŸš€ Typescript

This project is written to typescript. If you aren't that familiar with typescript this cheatsheet is a great resource to get familiar.

🌲 Tree Shakeable

Tree shaking is a method of optimising our code bundles by eliminating any code from the final file that isn’t actually being used. When using these utils you are garanteed that you will only import the functions you actually use in your code. Resulting in a smaller bundle size!

This is especially important for people like me who have BundlePhobia.

1.5.0

3 years ago

1.4.3

4 years ago

1.4.2

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago