mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Add semicolons.
This commit is contained in:
10
test/test.js
10
test/test.js
@@ -2125,9 +2125,9 @@
|
||||
QUnit.test('should clamp positive numbers', function(assert) {
|
||||
assert.expect(3);
|
||||
|
||||
assert.strictEqual(_.clamp(10, -5, 5), 5)
|
||||
assert.strictEqual(_.clamp(10, -5, 5), 5);
|
||||
assert.strictEqual(_.clamp(10.6, -5.6, 5.4), 5.4);
|
||||
assert.strictEqual(_.clamp(Infinity, -5, 5), 5)
|
||||
assert.strictEqual(_.clamp(Infinity, -5, 5), 5);
|
||||
});
|
||||
|
||||
QUnit.test('should not alter negative numbers in range', function(assert) {
|
||||
@@ -19951,7 +19951,7 @@
|
||||
func(Object(other))
|
||||
];
|
||||
})
|
||||
)
|
||||
);
|
||||
});
|
||||
|
||||
assert.deepEqual(actual, expected);
|
||||
@@ -20019,7 +20019,7 @@
|
||||
func(mod(other)),
|
||||
func(Object(mod(other)))
|
||||
];
|
||||
})
|
||||
});
|
||||
})
|
||||
);
|
||||
});
|
||||
@@ -20046,7 +20046,7 @@
|
||||
func(mod(value)),
|
||||
func(Object(mod(value)))
|
||||
];
|
||||
})
|
||||
});
|
||||
})
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user