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

Commit cb29632

Browse files
kseamonIgorMinar
authored andcommitted
perf: use faster check for $$ prefix
Use two calls to charAt instead of substr to detect a $$prefix in the shallowCopy functions. This makes shallowCopy 25-50% faster (depending on which browser is used). http://jsperf.com/angular-shallow-copy Closes #5457
1 parent 5c97731 commit cb29632

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ function shallowCopy(src, dst) {
769769
for(var key in src) {
770770
// shallowCopy is only ever called by $compile nodeLinkFn, which has control over src
771771
// so we don't need to worry about using our custom hasOwnProperty here
772-
if (src.hasOwnProperty(key) && key.substr(0, 2) !== '$$') {
772+
if (src.hasOwnProperty(key) && key.charAt(0) !== '$' && key.charAt(1) !== '$') {
773773
dst[key] = src[key];
774774
}
775775
}

src/ngResource/resource.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function shallowClearAndCopy(src, dst) {
3535
});
3636

3737
for (var key in src) {
38-
if (src.hasOwnProperty(key) && key.substr(0, 2) !== '$$') {
38+
if (src.hasOwnProperty(key) && key.charAt(0) !== '$' && key.charAt(1) !== '$') {
3939
dst[key] = src[key];
4040
}
4141
}

0 commit comments

Comments
 (0)