# hellpeq

> Just another one list of js helpers

Latest version **1.0.1** (published 2023-08-23) · MIT license · 0 weekly downloads

## Install

```sh
npm install hellpeq
pnpm add hellpeq
yarn add hellpeq
bun add hellpeq
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2023-08-23 |
| First published | 2023-08-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 13.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | kostix.dev |
| Maintainers | kostix.dev |
| Keywords | helpers, functions, classes, useful, useless |

## Links

- npm: https://www.npmjs.com/package/hellpeq
- Repository: https://github.com/kostixdev/hellpeq
- Homepage: https://github.com/kostixdev/hellpeq#readme
- Issues: https://github.com/kostixdev/hellpeq/issues
- npm.io page: https://npm.io/package/hellpeq

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2023-08-23
- 1.0.0 — 2023-08-22

## README

# hellpeq
> Just another one list of helpers

[![Code Style: Google](https://img.shields.io/badge/code%20style-google-blueviolet.svg)](https://github.com/google/gts)


<!--READMEQ:docsSection-->
### Functions

- [dummyFunctionNull](README.md#dummyfunctionnull)
- [dummyFunctionVoid](README.md#dummyfunctionvoid)
- [getRandomArbitrary](README.md#getrandomarbitrary)
- [getRandomBoolean](README.md#getrandomboolean)
- [getRandomIntArbitrary](README.md#getrandomintarbitrary)
- [getRandomIntArbitraryWithStep](README.md#getrandomintarbitrarywithstep)
- [getRandomItemFromArray](README.md#getrandomitemfromarray)
- [getRangeArrayByStep](README.md#getrangearraybystep)

## Functions

### dummyFunctionNull

> **dummyFunctionNull**(...`param`): `null`

Dummy function. Doing nothing, returns `null`.

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| ...`param` | `unknown`[] | any params |

#### Returns

`null`

null

#### Defined In

[index.ts:94](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L94)

***

### dummyFunctionVoid

> **dummyFunctionVoid**(...`param`): `void`

Dummy function. Doing nothing.

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| ...`param` | `unknown`[] | any params |

#### Returns

`void`

void

#### Defined In

[index.ts:87](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L87)

***

### getRandomArbitrary

> **getRandomArbitrary**(`min`, `max`): `number`

Returns random number in range of min and max.

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| `min` | `number` | Min value |
| `max` | `number` | Max value |

#### Returns

`number`

- random value

#### Defined In

[index.ts:12](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L12)

***

### getRandomBoolean

> **getRandomBoolean**(): `boolean`

Returns random boolean value.

#### Returns

`boolean`

- random true or false

#### Defined In

[index.ts:49](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L49)

***

### getRandomIntArbitrary

> **getRandomIntArbitrary**(`min`, `max`): `number`

Returns random Int number in range of min and max.

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| `min` | `number` | Min Int value |
| `max` | `number` | Max Int value |

#### Returns

`number`

- random Int value

#### Defined In

[index.ts:22](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L22)

***

### getRandomIntArbitraryWithStep

> **getRandomIntArbitraryWithStep**(
  `min`,
  `max`,
  `step`): `number`

Returns random Int number in range of min and max with step.

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| `min` | `number` | Min Int value |
| `max` | `number` | Max Int value |
| `step` | `number` | Step value |

#### Returns

`number`

- random Int value

#### Defined In

[index.ts:33](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L33)

***

### getRandomItemFromArray

> **getRandomItemFromArray**<`T`>(`array`): `T`

Returns random item from array.

#### Type parameters

| Parameter | Description |
| :------ | :------ |
| `T` | type of `array` item |

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| `array` | `T`[] | array of items |

#### Returns

`T`

- random item from array

#### Defined In

[index.ts:59](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L59)

***

### getRangeArrayByStep

> **getRangeArrayByStep**(
  `startAt`,
  `stopAt`,
  `step`): `number`[]

Returns array of number values in range with step.

#### Parameters

| Parameter | Type | Description |
| :------ | :------ | :------ |
| `startAt` | `number` | first range value |
| `stopAt` | `number` | last range value |
| `step` | `number` | range step value |

#### Returns

`number`[]

- array of range items

#### Defined In

[index.ts:70](https://github.com/kostixdev/hellpeq/blob/9b9f156/src/index.ts#L70)
<!--/READMEQ:docsSection-->


---
© [kostix.dev][kostix-url]


[kostix-url]: https://kostix.dev
[threejs-url]: https://threejs.org

---
_Source: https://npm.io/package/hellpeq · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
