Skip to content

Commit 023ae25

Browse files
authored
docs: update example
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 8744aa5 commit 023ae25

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib/constants/float16/sign-mask/examples

lib/node_modules/@stdlib/constants/float16/sign-mask/examples/index.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
'use strict';
2020

2121
var toWord = require( '@stdlib/number/float16/base/to-word' );
22-
var fromWord = require( '@stdlib/number/float16/base/from-word' );
2322
var toBinaryString = require( '@stdlib/number/uint16/base/to-binary-string' );
2423
var FLOAT16_SIGN_MASK = require( './../lib' );
2524

@@ -32,6 +31,3 @@ console.log( 'Isolate sign bits: %s', toBinaryString( out ) );
3231

3332
out = w & (~FLOAT16_SIGN_MASK);
3433
console.log( 'Turn off sign bits: %s', toBinaryString( out ) );
35-
36-
out = fromWord( out );
37-
console.log( 'Value: %d', out );

0 commit comments

Comments
 (0)