summaryrefslogtreecommitdiff
path: root/share/server/util.js
diff options
context:
space:
mode:
authorFilipe David Borba Manana <fdmanana@apache.org>2010-11-21 14:04:47 +0000
committerFilipe David Borba Manana <fdmanana@apache.org>2010-11-21 14:04:47 +0000
commit882be279b64b291045701895d947f256309f5743 (patch)
tree50a2c162c09ba798f20d7e8f3feeddf6b7087d73 /share/server/util.js
parenta281bc40d6545e70e1aae9973e1a8a49aa119fea (diff)
Merged revision 1037448 from trunk:
Proper verification of the roles property of a user document. Closes COUCHDB-790. Thanks Gabriel Farrell. git-svn-id: https://svn.apache.org/repos/asf/couchdb/branches/1.0.x@1037449 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'share/server/util.js')
-rw-r--r--share/server/util.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/share/server/util.js b/share/server/util.js
index 71a36a29..1b57f041 100644
--- a/share/server/util.js
+++ b/share/server/util.js
@@ -124,3 +124,7 @@ function log(message) {
}
respond(["log", String(message)]);
};
+
+function isArray(obj) {
+ return toString.call(obj) === "[object Array]";
+}