mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
Minor stye nit in _.isEqual test.
This commit is contained in:
committed by
jdalton
parent
5b81c4573c
commit
9ded5dc78d
@@ -6653,7 +6653,7 @@
|
||||
|
||||
test('should perform comparisons between typed arrays', 1, function() {
|
||||
var pairs = _.map(typedArrays, function(type, index) {
|
||||
var otherType = typedArrays[++index % typedArrays.length],
|
||||
var otherType = typedArrays[(index + 1) % typedArrays.length],
|
||||
CtorA = root[type] || function(n) { this.n = n; },
|
||||
CtorB = root[otherType] || function(n) { this.n = n; },
|
||||
bufferA = root[type] ? new ArrayBuffer(8) : 8,
|
||||
|
||||
Reference in New Issue
Block a user