UNPKG

frida-java-bridge

Version:
14 lines (11 loc) 227 B
export default function memoize (compute) { let value = null; let computed = false; return function (...args) { if (!computed) { value = compute(...args); computed = true; } return value; }; }