Sign in
apache
/
pouchdb
/
refs/heads/read-as-array-buffer
/
.
/
lib
/
evalFilter.js
blob: cfc16713ce6a9005fec2a2816009ec36a17202a1 [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
evalFilter
;
function
evalFilter
(
input
)
{
/*jshint evil: true */
return
eval
([
'(function () { return '
,
input
,
' })()'
].
join
(
''
));
}