File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
lib/node_modules/@stdlib/number/float16/base/from-word/lib Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ var FLOAT16_EXPONENT_BIAS = require( '@stdlib/constants/float16/exponent-bias' )
2727var FLOAT16_SIGN_MASK = require ( '@stdlib/constants/float16/sign-mask' ) ;
2828var FLOAT16_EXPONENT_MASK = require ( '@stdlib/constants/float16/exponent-mask' ) ;
2929var FLOAT16_SIGNIFICAND_MASK = require ( '@stdlib/constants/float16/significand-mask' ) ;
30- var FLOAT16_NUM_SIGNIFICAND_BITS = require ( '@stdlib/constants/float16/num-significand-bits' ) ;
30+ var FLOAT16_NUM_SIGNIFICAND_BITS = require ( '@stdlib/constants/float16/num-significand-bits' ) ; // eslint-disable-line id-length
3131var FLOAT16_NUM_EXPONENT_BITS = require ( '@stdlib/constants/float16/num-exponent-bits' ) ;
3232
3333
@@ -61,7 +61,7 @@ function fromWord( word ) {
6161 sign = ( word & FLOAT16_SIGN_MASK ) >>> 15 ;
6262
6363 // Extract exponent (bits 14-10):
64- exponent = ( word & FLOAT16_EXPONENT_MASK ) >>> FLOAT16_NUM_SIGNIFICAND_BITS ;
64+ exponent = ( word & FLOAT16_EXPONENT_MASK ) >>> FLOAT16_NUM_SIGNIFICAND_BITS ; // eslint-disable-line max-len
6565
6666 // Extract mantissa (bits 9-0):
6767 mantissa = word & FLOAT16_SIGNIFICAND_MASK ;
You can’t perform that action at this time.
0 commit comments