mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-14 09:10:39 +08:00
Minification of code and html string template
This commit is contained in:
@@ -10,9 +10,9 @@ export default class IntegerEntity extends Entity {
|
||||
return IntegerEntity.attributes
|
||||
}
|
||||
|
||||
constructor(options = { value: 0 }) {
|
||||
options.value = Math.round(options.value)
|
||||
constructor(options = {}) {
|
||||
super(options)
|
||||
this.value = Math.round(this.value)
|
||||
}
|
||||
|
||||
valueOf() {
|
||||
|
||||
Reference in New Issue
Block a user