UNPKG

ductile

Version:

Elasticsearch Bulk Loader

16 lines (13 loc) 266 B
var done = false module.exports = (hit) => { if (done) { return null } hit._id = "panda id" hit._type = "panda type" hit._index = "panda index" hit._source.panda = "TRUE PANDA" if (hit._oper) { hit._oper = 'create' } done = true return hit }