Grammar refactoring WIP

This commit is contained in:
barsdeveloper
2021-10-22 00:01:24 +02:00
parent 9caea42101
commit 051eed061d
21 changed files with 968 additions and 354 deletions

8
js/entity/Integer.js Normal file
View File

@@ -0,0 +1,8 @@
import Entity from "./Entity"
export default class Integer extends Entity {
constructor(value) {
super()
this.value = Math.round(new Number(value).valueOf())
}
}