Closed azhiv closed 2 years ago
Consider the following usecase:
const changeset = Changeset({ name: '', flag: false, count: 0, ref: null, success: true }); console.log(changeset.name); // undefined console.log(changeset.flag); // undefined console.log(changeset.count); // undefined console.log(changeset.ref); // undefined console.log(changeset.success); // true
All results except for the last one look incorrect.
Could you please review a PR I created to tackle the issue?
Consider the following usecase:
All results except for the last one look incorrect.
Could you please review a PR I created to tackle the issue?