File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- 2022-09 -01T01:27:31.241Z 
1+ 2022-10 -01T01:54:15.148Z 
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ import fromBinaryStringf = require( './index' );
2626	fromBinaryStringf (  '01000000100000000000000000000000'  ) ;  // $ExpectType number 
2727} 
2828
29- // The function does not compile  if provided a value other than a string... 
29+ // The compiler throws an error  if the function is  provided a value other than a string... 
3030{ 
3131	fromBinaryStringf (  true  ) ;  // $ExpectError 
3232	fromBinaryStringf (  false  ) ;  // $ExpectError 
@@ -36,7 +36,7 @@ import fromBinaryStringf = require( './index' );
3636	fromBinaryStringf (  (  x : number  ) : number  =>  x  ) ;  // $ExpectError 
3737} 
3838
39- // The function does not compile  if provided insufficient arguments... 
39+ // The compiler throws an error  if the function is  provided insufficient arguments... 
4040{ 
4141	fromBinaryStringf ( ) ;  // $ExpectError 
4242} 
Original file line number Diff line number Diff line change 4141
4242// MODULES // 
4343
44- var  fromBinaryStringf  =  require (  './main.js'  ) ; 
44+ var  main  =  require (  './main.js'  ) ; 
4545
4646
4747// EXPORTS // 
4848
49- module . exports  =  fromBinaryStringf ; 
49+ module . exports  =  main ; 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments