Skip to content

Commit

Permalink
docs(util): added jsdoc annotations for ArrayHelpers.js
Browse files Browse the repository at this point in the history
  • Loading branch information
taranek committed Jan 30, 2022
1 parent 43b60ab commit 3cf3f49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/util/ArrayHelpers.js
Expand Up @@ -6,10 +6,10 @@
"use strict";

/**
* Compare two arrays by performing strict equality check for each value.
* Compare two arrays or strings by performing strict equality check for each value.
* @template T [T=any]
* @param {Array<T>} a Array of values to be compared
* @param {Array<T>} b Array of values to be compared
* @param {ArrayLike<T>} a Array of values to be compared
* @param {ArrayLike<T>} b Array of values to be compared
* @returns {boolean} returns true if all the elements of passed arrays are strictly equal.
*/

Expand Down

0 comments on commit 3cf3f49

Please sign in to comment.