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

10
pick.js
View File

@@ -1,4 +1,4 @@
import basePick from './.internal/basePick.js';
import basePick from './.internal/basePick.js'
/**
* Creates an object composed of the picked `object` properties.
@@ -10,13 +10,13 @@ import basePick from './.internal/basePick.js';
* @returns {Object} Returns the new object.
* @example
*
* const object = { 'a': 1, 'b': '2', 'c': 3 };
* const object = { 'a': 1, 'b': '2', 'c': 3 }
*
* pick(object, ['a', 'c']);
* pick(object, ['a', 'c'])
* // => { 'a': 1, 'c': 3 }
*/
function pick(object, ...paths) {
return object == null ? {} : basePick(object, paths);
return object == null ? {} : basePick(object, paths)
}
export default pick;
export default pick