UNPKG

180 BJavaScriptView Raw
1class Context {
2 constructor() {
3 this.level = 0;
4 }
5
6 child() {
7 const child = Object.create(this);
8 child.level++;
9 return child;
10 }
11}
12
13module.exports = Context;