diff options
author | Robert Newson <rnewson@apache.org> | 2011-10-06 10:39:21 +0100 |
---|---|---|
committer | Robert Newson <rnewson@apache.org> | 2011-10-06 10:39:21 +0100 |
commit | 5b558c81ed9709fb286a6821e9ae6d6478012c2c (patch) | |
tree | df5689ac2ecfda77d4129a4c814dc21f68b93653 /share/server/util.js | |
parent | e6c0fc955ea2be0fd3c4e894fd0c7cc87202c5a5 (diff) |
Remove SpiderMonkey 1.8.5 compatibility
This commit reverts 1.8.5 compatibility including the corresponding couchjs
paren hack as this leads to significant breakage in existing functions.
Diffstat (limited to 'share/server/util.js')
-rw-r--r-- | share/server/util.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/share/server/util.js b/share/server/util.js index f6fa60bb..0b812fe1 100644 --- a/share/server/util.js +++ b/share/server/util.js @@ -63,11 +63,6 @@ var Couch = { }, compileFunction : function(source, ddoc) { if (!source) throw(["error","not_found","missing function"]); - // Some newer SpiderMonkey's appear to not like evaluating - // an anonymous function at global scope. Simple fix just - // wraps the source with parens so the function object is - // returned correctly. - source = "(" + source + ")"; try { if (sandbox) { if (ddoc) { |