View proxy.js
"use strict"; | |
class Fruit { | |
constructor(name){ | |
this._name = name; | |
} | |
set name(name){ | |
this._name = name; | |
} |
View proxyFactory.js
"use strict"; | |
class Fruit { | |
constructor(name){ | |
this._name = name; | |
} | |
set name(name){ | |
this._name = name; | |
} |