0.0.7 • Published 1 year ago

handy-toolkit v0.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

handy-toolkit

handy-toolkit is a collection of utility functions to simplify JavaScript development.

Table of Contents

Installation

You can install handy-toolkit via npm:

npm install handy-toolkit

usage

import { avgExcludeMaxMin } from "handy-toolkit";

console.log(avgExcludeMaxMin([])); // 0
console.log(avgExcludeMaxMin([2])); // 2
console.log(avgExcludeMaxMin([3, 5])); // 4
console.log(avgExcludeMaxMin([4, 7, 9])); // 7
console.log(avgExcludeMaxMin([4, 7, 9, 11])); // 8

api

contributing

license

0.0.7

1 year ago

0.0.6

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago