Fix style nits.

This commit is contained in:
John-David Dalton
2017-01-09 12:04:06 -08:00
parent 10f64ee9c4
commit ca9e6fa087
8 changed files with 11 additions and 11 deletions

View File

@@ -10,11 +10,11 @@ import baseIndexOf from './_baseIndexOf.js';
* @returns {number} Returns the index of the first unmatched string symbol.
*/
function charsStartIndex(strSymbols, chrSymbols) {
let index = -1;
const length = strSymbols.length;
let index = -1;
const length = strSymbols.length;
while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}
return index;
while (++index < length && baseIndexOf(chrSymbols, strSymbols[index], 0) > -1) {}
return index;
}
export default charsStartIndex;

View File

@@ -1 +1 @@
export { default } from './forEach.js'
export { default } from './forEach.js';

View File

@@ -1 +1 @@
export { default } from './forEachRight.js'
export { default } from './forEachRight.js';

View File

@@ -1 +1 @@
export { default } from './toPairs.js'
export { default } from './toPairs.js';

View File

@@ -1 +1 @@
export { default } from './toPairsIn.js'
export { default } from './toPairsIn.js';

View File

@@ -1 +1 @@
export { default } from './assignIn.js'
export { default } from './assignIn.js';

View File

@@ -1 +1 @@
export { default } from './assignInWith.js'
export { default } from './assignInWith.js';

View File

@@ -1 +1 @@
export { default } from './head.js'
export { default } from './head.js';