aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngRoute/routeUtils.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngRoute/routeUtils.js')
-rw-r--r--src/ngRoute/routeUtils.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ngRoute/routeUtils.js b/src/ngRoute/routeUtils.js
deleted file mode 100644
index 0cff7213..00000000
--- a/src/ngRoute/routeUtils.js
+++ /dev/null
@@ -1,17 +0,0 @@
-'use strict';
-
-var copy = angular.copy,
- equals = angular.equals,
- extend = angular.extend,
- forEach = angular.forEach,
- isDefined = angular.isDefined,
- isFunction = angular.isFunction,
- isString = angular.isString,
- jqLite = angular.element,
- noop = angular.noop,
- toJson = angular.toJson;
-
-
-function inherit(parent, extra) {
- return extend(new (extend(function() {}, {prototype:parent}))(), extra);
-}