diff --git a/src/utils.ts b/src/utils.ts index 679a3c9..839c917 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -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;