aboutsummaryrefslogtreecommitdiffstats
path: root/src/Angular.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Angular.js')
-rw-r--r--src/Angular.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Angular.js b/src/Angular.js
index 87c10e23..fec866f5 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -417,6 +417,11 @@ function isScope(obj) {
}
+function isFile(obj) {
+ return toString.apply(obj) === '[object File]';
+}
+
+
function isBoolean(value) {return typeof value == $boolean;}
function isTextNode(node) {return nodeName_(node) == '#text';}