Sign in
apache
/
pouchdb
/
refs/heads/5to6
/
.
/
lib
/
evalFilter.js
blob: 09858599c47f4a7f84e9114976cc66a8366f7426 [
file
] [
log
] [
blame
]
export
default
evalFilter
;
function
evalFilter
(
input
)
{
/*jshint evil: true */
return
eval
([
'(function () { return '
,
input
,
' })()'
].
join
(
''
));
}