Skip to content

Commit

Permalink
chore(deps): update
Browse files Browse the repository at this point in the history
  • Loading branch information
SkeLLLa committed Sep 14, 2021
1 parent 7665e39 commit 996e344
Show file tree
Hide file tree
Showing 24 changed files with 1,620 additions and 3,198 deletions.
6 changes: 3 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Node object hash - v2.3.8
Node object hash - v2.3.9

# Node object hash - v2.3.8
# Node object hash - v2.3.9

## Table of contents

### Modules

- [hasher](modules/hasher.md)
- [objectSorter](modules/objectsorter.md)
- [objectSorter](modules/objectSorter.md)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Node object hash - v2.3.8](../README.md) / [hasher](../modules/hasher.md) / Hashable
[Node object hash - v2.3.9](../README.md) / [hasher](../modules/hasher.md) / Hashable

# Interface: Hashable

Expand All @@ -10,24 +10,20 @@ with the function toHash that return the same value will have the same hash

## Table of contents

### Properties
### Methods

- [toHashableString](hasher.hashable.md#tohashablestring)
- [toHashableString](hasher.Hashable.md#tohashablestring)

## Properties
## Methods

### toHashableString

**toHashableString**: () => `string`
**toHashableString**(): `string`

#### Type declaration

▸ (): `string`

##### Returns
#### Returns

`string`

#### Defined in

[hasher.ts:37](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L37)
[hasher.ts:37](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L37)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Node object hash - v2.3.8](../README.md) / [hasher](../modules/hasher.md) / Hasher
[Node object hash - v2.3.9](../README.md) / [hasher](../modules/hasher.md) / Hasher

# Interface: Hasher

Expand All @@ -8,9 +8,9 @@

### Methods

- [hash](hasher.hasher-1.md#hash)
- [sort](hasher.hasher-1.md#sort)
- [sortObject](hasher.hasher-1.md#sortobject)
- [hash](hasher.Hasher.md#hash)
- [sort](hasher.Hasher.md#sort)
- [sortObject](hasher.Hasher.md#sortobject)

## Methods

Expand All @@ -22,10 +22,10 @@ Create hash of an object

#### Parameters

| Name | Type | Description |
| :------- | :----------------------------------------------- | :------------ |
| `object` | `any` | source object |
| `opts?` | [HasherOptions](hasher.export_.hasheroptions.md) | - |
| Name | Type | Description |
| :------- | :------------------------------------------------- | :------------ |
| `object` | `any` | source object |
| `opts?` | [`HasherOptions`](hasher.export_.HasherOptions.md) | - |

#### Returns

Expand All @@ -35,7 +35,7 @@ hash string of an object

#### Defined in

[hasher.ts:46](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L46)
[hasher.ts:46](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L46)

---

Expand All @@ -59,7 +59,7 @@ sorted string from an object

#### Defined in

[hasher.ts:52](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L52)
[hasher.ts:52](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L52)

---

Expand All @@ -85,4 +85,4 @@ sorted string from an object

#### Defined in

[hasher.ts:59](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L59)
[hasher.ts:59](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L59)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Node object hash - v2.3.8](../README.md) / [hasher](../modules/hasher.md) / HasherOptions
[Node object hash - v2.3.9](../README.md) / [hasher](../modules/hasher.md) / HasherOptions

# Interface: HasherOptions

Expand All @@ -8,19 +8,19 @@ Object hasher options

## Hierarchy

- [SorterOptions](objectsorter.export_.sorteroptions.md)
- [`SorterOptions`](objectSorter.export_.SorterOptions.md)

**HasherOptions**
**`HasherOptions`**

## Table of contents

### Properties

- [alg](hasher.hasheroptions.md#alg)
- [coerce](hasher.hasheroptions.md#coerce)
- [enc](hasher.hasheroptions.md#enc)
- [sort](hasher.hasheroptions.md#sort)
- [trim](hasher.hasheroptions.md#trim)
- [alg](hasher.HasherOptions.md#alg)
- [coerce](hasher.HasherOptions.md#coerce)
- [enc](hasher.HasherOptions.md#enc)
- [sort](hasher.HasherOptions.md#sort)
- [trim](hasher.HasherOptions.md#trim)

## Properties

Expand All @@ -34,13 +34,13 @@ Hash algorithm to use

#### Defined in

[hasher.ts:23](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L23)
[hasher.ts:23](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L23)

---

### coerce

`Optional` **coerce**: `boolean` \| [CoerceOptions](objectsorter.export_.coerceoptions.md)
`Optional` **coerce**: `boolean` \| [`CoerceOptions`](objectSorter.export_.CoerceOptions.md)

If `true` enables type coercion.
Advanced coerce options could be provided as object
Expand All @@ -49,11 +49,11 @@ Advanced coerce options could be provided as object

#### Inherited from

[SorterOptions](objectsorter.export_.sorteroptions.md).[coerce](objectsorter.export_.sorteroptions.md#coerce)
[SorterOptions](objectSorter.export_.SorterOptions.md).[coerce](objectSorter.export_.SorterOptions.md#coerce)

#### Defined in

[objectSorter.ts:171](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/objectSorter.ts#L171)
[objectSorter.ts:171](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/objectSorter.ts#L171)

---

Expand All @@ -67,13 +67,13 @@ String encoding for hash

#### Defined in

[hasher.ts:28](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L28)
[hasher.ts:28](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L28)

---

### sort

`Optional` **sort**: `boolean` \| [SortOptions](objectsorter.export_.sortoptions.md)
`Optional` **sort**: `boolean` \| [`SortOptions`](objectSorter.export_.SortOptions.md)

If `true` enables sorting.
Advanced sorting options could be provided as object
Expand All @@ -82,17 +82,17 @@ Advanced sorting options could be provided as object

#### Inherited from

[SorterOptions](objectsorter.export_.sorteroptions.md).[sort](objectsorter.export_.sorteroptions.md#sort)
[SorterOptions](objectSorter.export_.SorterOptions.md).[sort](objectSorter.export_.SorterOptions.md#sort)

#### Defined in

[objectSorter.ts:177](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/objectSorter.ts#L177)
[objectSorter.ts:177](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/objectSorter.ts#L177)

---

### trim

`Optional` **trim**: `boolean` \| [TrimOptions](objectsorter.export_.trimoptions.md)
`Optional` **trim**: `boolean` \| [`TrimOptions`](objectSorter.export_.TrimOptions.md)

If `true` enables trimming and multiple whitespace replacement.
Advanced sorting options could be provided as object.
Expand All @@ -101,8 +101,8 @@ Advanced sorting options could be provided as object.

#### Inherited from

[SorterOptions](objectsorter.export_.sorteroptions.md).[trim](objectsorter.export_.sorteroptions.md#trim)
[SorterOptions](objectSorter.export_.SorterOptions.md).[trim](objectSorter.export_.SorterOptions.md#trim)

#### Defined in

[objectSorter.ts:183](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/objectSorter.ts#L183)
[objectSorter.ts:183](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/objectSorter.ts#L183)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Node object hash - v2.3.8](../README.md) / [hasher](../modules/hasher.md) / [export%3D](../modules/hasher.export_.md) / Hashable
[Node object hash - v2.3.9](../README.md) / [hasher](../modules/hasher.md) / [export%3D](../modules/hasher.export_.md) / Hashable

# Interface: Hashable

Expand All @@ -10,24 +10,20 @@ with the function toHash that return the same value will have the same hash

## Table of contents

### Properties
### Methods

- [toHashableString](hasher.export_.hashable.md#tohashablestring)
- [toHashableString](hasher.export_.Hashable.md#tohashablestring)

## Properties
## Methods

### toHashableString

**toHashableString**: () => `string`
**toHashableString**(): `string`

#### Type declaration

▸ (): `string`

##### Returns
#### Returns

`string`

#### Defined in

[hasher.ts:37](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L37)
[hasher.ts:37](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L37)
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Node object hash - v2.3.8](../README.md) / [hasher](../modules/hasher.md) / [export%3D](../modules/hasher.export_.md) / Hasher
[Node object hash - v2.3.9](../README.md) / [hasher](../modules/hasher.md) / [export%3D](../modules/hasher.export_.md) / Hasher

# Interface: Hasher

Expand All @@ -8,9 +8,9 @@

### Methods

- [hash](hasher.export_.hasher.md#hash)
- [sort](hasher.export_.hasher.md#sort)
- [sortObject](hasher.export_.hasher.md#sortobject)
- [hash](hasher.export_.Hasher.md#hash)
- [sort](hasher.export_.Hasher.md#sort)
- [sortObject](hasher.export_.Hasher.md#sortobject)

## Methods

Expand All @@ -22,10 +22,10 @@ Create hash of an object

#### Parameters

| Name | Type | Description |
| :------- | :----------------------------------------------- | :------------ |
| `object` | `any` | source object |
| `opts?` | [HasherOptions](hasher.export_.hasheroptions.md) | - |
| Name | Type | Description |
| :------- | :------------------------------------------------- | :------------ |
| `object` | `any` | source object |
| `opts?` | [`HasherOptions`](hasher.export_.HasherOptions.md) | - |

#### Returns

Expand All @@ -35,7 +35,7 @@ hash string of an object

#### Defined in

[hasher.ts:46](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L46)
[hasher.ts:46](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L46)

---

Expand All @@ -59,7 +59,7 @@ sorted string from an object

#### Defined in

[hasher.ts:52](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L52)
[hasher.ts:52](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L52)

---

Expand All @@ -85,4 +85,4 @@ sorted string from an object

#### Defined in

[hasher.ts:59](https://github.com/SkeLLLa/node-object-hash/blob/9b047ca/src/hasher.ts#L59)
[hasher.ts:59](https://github.com/SkeLLLa/node-object-hash/blob/7665e39/src/hasher.ts#L59)
Loading

0 comments on commit 996e344

Please sign in to comment.