- Notifications
You must be signed in to change notification settings - Fork8
TypeScript template
uupaa edited this pageSep 7, 2016 ·2 revisions
exportclass${REPOSITORY_NAME}{staticname="${REPOSITORY_NAME}";staticrepository="https://github.com/${GITHUB_USER_NAME}/${REPOSITORY_NAME}.js"; _value:number;constructor(value:number){this._value=value;}value(): number{returnthis._value;}isNumber(): boolean{returntypeofthis._value==="number";}isInteger(): boolean{returntypeofthis._value==="number"&&Math.ceil(this._value)===this._value;}}