Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

fix(angular.copy): copy own non-enumerable properties #15693

Conversation

zuzusik
Copy link
Contributor

@zuzusik zuzusik commented Feb 8, 2017

What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)

Bug fix

What is the current behavior? (You can also link to an open issue here)

#15692

Does this PR introduce a breaking change?

not sure if this can be called a breaking change

src/Angular.js Outdated
@@ -941,6 +941,11 @@ function copy(source, destination, maxDepth) {
for (key in source) {
destination[key] = copyElement(source[key], maxDepth);
}
// don't use Object.getOwnPropertyNames with RegExp to avoid copying RegExp lastIndex property
} else if (source && typeof Object.getOwnPropertyNames === 'function' && !isRegExp(source)) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if it is reasonable to do isRegExp check here as I assume it can affect performance.

Not doing this check leads to copying own non-enumerable lastIndex property of RegExp object to destination.

@@ -941,6 +941,11 @@ function copy(source, destination, maxDepth) {
for (key in source) {
destination[key] = copyElement(source[key], maxDepth);
}
// don't use Object.getOwnPropertyNames with RegExp to avoid copying RegExp lastIndex property
} else if (isObject(source) && typeof Object.getOwnPropertyNames === 'function' && !isRegExp(source)) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if it is reasonable to do isRegExp check here as I assume it can affect performance.

Not doing this check leads to copying own non-enumerable lastIndex property of RegExp object to destination.

copying object without own non-enumerable properties is non-consistent and can lead to bugs

fixes angular#15692
@zuzusik zuzusik force-pushed the zuzusik-copy_own_non_enumerable_properties branch from a1b2bfe to 4815135 Compare February 9, 2017 16:38
@zuzusik zuzusik changed the base branch from master to v1.6.x February 10, 2017 12:29
@zuzusik zuzusik changed the base branch from v1.6.x to master February 10, 2017 12:30
@Narretz
Copy link
Contributor

Narretz commented Jul 4, 2017

See #15692 (comment)

@Narretz Narretz closed this Jul 4, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants