1*023bc8eaSKudo Chien #include "WorkletEventHandler.h"
2*023bc8eaSKudo Chien 
3*023bc8eaSKudo Chien namespace reanimated {
4*023bc8eaSKudo Chien 
process(jsi::Runtime & rt,const jsi::Value & eventValue)5*023bc8eaSKudo Chien void WorkletEventHandler::process(
6*023bc8eaSKudo Chien     jsi::Runtime &rt,
7*023bc8eaSKudo Chien     const jsi::Value &eventValue) {
8*023bc8eaSKudo Chien   handler.callWithThis(rt, handler, eventValue);
9*023bc8eaSKudo Chien }
10*023bc8eaSKudo Chien 
11*023bc8eaSKudo Chien } // namespace reanimated
12