fix trailing whitespace in Javascript

I want to make travis-ci enforce that everything passes lint.
Get it in a good state first.
This commit is contained in:
Scott Lamb
2018-08-31 07:31:22 -07:00
parent 8adf6f4bc7
commit ee3da33470
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ export default class Range {
* Determine if value is inside the range.
*
* @param {Number} value Value to test
* @return {Boolean}
* @return {Boolean}
*/
isInRange(value) {
return value >= this.low && value <= this.high;