Skip to content

Instantly share code, notes, and snippets.

@dounan
Last active September 20, 2017 23:28
Show Gist options
  • Save dounan/ce0a7c3b88f2310dfb5aedd618c804cb to your computer and use it in GitHub Desktop.
Save dounan/ce0a7c3b88f2310dfb5aedd618c804cb to your computer and use it in GitHub Desktop.
Example of nested sentinel
import makeSentinel from 'mutation-sentinel';
const obj = {array: [{}]};
const wrappedObj = makeSentinel(obj);
wrappedObj.array[0].value = "oops"; // MUTATION DETECTED BY SENTINEL!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment