Skip to content

Instantly share code, notes, and snippets.

@bmeck
Last active May 16, 2018 23:23
Show Gist options
  • Save bmeck/c9ab50b3589b9991cd08173877fcc2f4 to your computer and use it in GitHub Desktop.
Save bmeck/c9ab50b3589b9991cd08173877fcc2f4 to your computer and use it in GitHub Desktop.
{
async resolve() {
const dep = vm.Module('export let a = 0; ({set a(v) {a = v;} get a() {return a;}})');
dep.onEvaluated((ns, reflect) => {
setInterval(() => reflect.a++, 1000);
});
return dep;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment