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

Commit d088fbe

Browse files
committed
refactor($compile): remove unnecessary call to isDefined()
(As discussed in https://github.com/angular/angular.js/pull/14406/files#r59131398.)
1 parent ee8d8e1 commit d088fbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ng/compile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3237,7 +3237,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) {
32373237
onChangesQueue.push(triggerOnChangesHook);
32383238
}
32393239
// If the has been a change on this property already then we need to reuse the previous value
3240-
if (isDefined(changes[key])) {
3240+
if (changes[key]) {
32413241
previousValue = changes[key].previousValue;
32423242
}
32433243
// Store this change

0 commit comments

Comments
 (0)