mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 08:57:49 +00:00
Remove semicolons.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import getSymbols from './getSymbols.js';
|
||||
import keys from '../keys.js';
|
||||
import getSymbols from './getSymbols.js'
|
||||
import keys from '../keys.js'
|
||||
|
||||
/**
|
||||
* Creates an array of own enumerable property names and symbols of `object`.
|
||||
@@ -9,8 +9,8 @@ import keys from '../keys.js';
|
||||
* @returns {Array} Returns the array of property names and symbols.
|
||||
*/
|
||||
function getAllKeys(object) {
|
||||
const result = keys(object);
|
||||
return Array.isArray(object) ? result : arrayPush(result, getSymbols(object));
|
||||
const result = keys(object)
|
||||
return Array.isArray(object) ? result : arrayPush(result, getSymbols(object))
|
||||
}
|
||||
|
||||
export default getAllKeys;
|
||||
export default getAllKeys
|
||||
|
||||
Reference in New Issue
Block a user