aboutsummaryrefslogtreecommitdiffstats
path: root/src/Angular.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Angular.js')
-rw-r--r--src/Angular.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Angular.js b/src/Angular.js
index 1952b48e..69d52a2a 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -862,19 +862,6 @@ function toBoolean(value) {
return value;
}
-function merge(src, dst) {
- for ( var key in src) {
- var value = dst[key];
- var type = typeof value;
- if (type == $undefined) {
- dst[key] = fromJson(toJson(src[key]));
- } else if (type == 'object' && value.constructor != array &&
- key.substring(0, 1) != "$") {
- merge(src[key], value);
- }
- }
-}
-
/** @name angular.compile */
function compile(element) {