UNPKG

frida-java-bridge

Version:
8 lines (6 loc) 157 B
export const JNI_OK = 0; export function checkJniResult (name, result) { if (result !== JNI_OK) { throw new Error(name + ' failed: ' + result); } }