Skip to content

Commit 3cf3f49

Browse files
committed
docs(util): added jsdoc annotations for ArrayHelpers.js
1 parent 43b60ab commit 3cf3f49

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/util/ArrayHelpers.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"use strict";
77

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

0 commit comments

Comments
 (0)