chore: change name of argument

This commit is contained in:
rwaldron 2021-09-24 13:59:02 -04:00
parent 92dad8d640
commit 1feafce8ce

View File

@ -26,8 +26,8 @@ compareArray.isSameValue = function(a, b) {
return a === b; return a === b;
}; };
compareArray.format = function(spreadable) { compareArray.format = function(thingWithALengthPropertyAndNumericIndices) {
return `[${[].map.call(spreadable, String).join(', ')}]`; return `[${[].map.call(thingWithALengthPropertyAndNumericIndices, String).join(', ')}]`;
}; };
assert.compareArray = function(actual, expected, message) { assert.compareArray = function(actual, expected, message) {