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,5 +1,5 @@
import baseGet from './baseGet.js';
import baseSlice from './baseSlice.js';
import baseGet from './baseGet.js'
import baseSlice from './baseSlice.js'
/**
* Gets the parent value at `path` of `object`.
@@ -10,7 +10,7 @@ import baseSlice from './baseSlice.js';
* @returns {*} Returns the parent value.
*/
function parent(object, path) {
return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1));
return path.length < 2 ? object : baseGet(object, baseSlice(path, 0, -1))
}
export default parent;
export default parent