Skip to content

Commit

Permalink
docs: improve jsdoc for objectHash() (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
okj579 authored Aug 10, 2023
1 parent 06c67aa commit b04d602
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/object-hash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ const defaults: HashOptions = Object.freeze({
});

/**
* Hash any JS value into a string with murmur v3 hash
* Serialize any JS value into a stable, hashable string
* @param {object} object value to hash
* @param {HashOptions} options hashing options
* @return {string} hash value
* @return {string} serialized value
* @api public
*/
export function objectHash(object: any, options?: HashOptions): string {
Expand Down

0 comments on commit b04d602

Please sign in to comment.