mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import arrayMap from './arrayMap.js';
|
||||
import arrayMap from './arrayMap.js'
|
||||
|
||||
/**
|
||||
* The base implementation of `values` and `valuesIn` which creates an
|
||||
@@ -11,7 +11,7 @@ import arrayMap from './arrayMap.js';
|
||||
* @returns {Object} Returns the array of property values.
|
||||
*/
|
||||
function baseValues(object, props) {
|
||||
return arrayMap(props, key => object[key]);
|
||||
return arrayMap(props, key => object[key])
|
||||
}
|
||||
|
||||
export default baseValues;
|
||||
export default baseValues
|
||||
|
||||
Reference in New Issue
Block a user