Sign in
apache
/
pouchdb
/
refs/heads/4071-return-of-code-coverage
/
.
/
lib
/
mapreduce
/
evalfunc.js
blob: 488486e1e37064997b657dccd27ce3413685e1a2 [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
function
(
func
,
emit
,
sum
,
log
,
isArray
,
toJSON
)
{
/*jshint evil:true,unused:false */
return
eval
(
"'use strict'; ("
+
func
.
replace
(
/;\s*$/
,
""
)
+
");"
);
};