mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 16:47:49 +00:00
Remove semicolons.
This commit is contained in:
@@ -8,13 +8,13 @@
|
||||
* @returns {Array} Returns the array of property names.
|
||||
*/
|
||||
function nativeKeysIn(object) {
|
||||
const result = [];
|
||||
const result = []
|
||||
if (object != null) {
|
||||
for (const key in Object(object)) {
|
||||
result.push(key);
|
||||
result.push(key)
|
||||
}
|
||||
}
|
||||
return result;
|
||||
return result
|
||||
}
|
||||
|
||||
export default nativeKeysIn;
|
||||
export default nativeKeysIn
|
||||
|
||||
Reference in New Issue
Block a user