Skip to content

Commit

Permalink
style(lint): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
IWANABETHATGUY committed Oct 31, 2019
1 parent 65abccb commit 6a51495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const getObjectCloneStrict: FastCopy.ObjectCloner = (
const properties: (string | symbol)[] = SUPPORTS.SYMBOL_PROPERTIES
? [].concat(getOwnPropertyNames(object), getOwnPropertySymbols(object))
: getOwnPropertyNames(object);
const propertiesLength = properties.length
const propertiesLength = properties.length;
if (propertiesLength) {
for (
let index = 0, property, descriptor;
Expand Down

0 comments on commit 6a51495

Please sign in to comment.