Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

View File

@@ -1,4 +1,4 @@
import eq from '../eq.js';
import eq from '../eq.js'
/**
* Gets the index at which the `key` is found in `array` of key-value pairs.
@@ -9,13 +9,13 @@ import eq from '../eq.js';
* @returns {number} Returns the index of the matched value, else `-1`.
*/
function assocIndexOf(array, key) {
let length = array.length;
let length = array.length
while (length--) {
if (eq(array[length][0], key)) {
return length;
return length
}
}
return -1;
return -1
}
export default assocIndexOf;
export default assocIndexOf