File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1616'use strict' ;
1717////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
1818const yargs = require ( 'yargs' ) ;
19- const utils = require ( './utils.js' ) . Utils ;
19+ const Utils = require ( './utils.js' ) . Utils ;
2020
2121class LoggingOpt {
2222 static logLib ( ) {
@@ -545,8 +545,7 @@ class SenderOptions extends SenderReceiverOptions {
545545 this . anonymous = args [ 'anonymous' ] ;
546546
547547 if ( args [ 'msg-content-from-file' ] ) {
548- const ReadContentFromFile = utils . ReadContentFromFile ;
549- this . msgContentFromFile = ReadContentFromFile ( args [ 'msg-content-from-file' ] ) ;
548+ this . msgContentFromFile = Utils . readContentFromFile ( args [ 'msg-content-from-file' ] ) ;
550549 }
551550
552551 this . contentType = args [ 'content-type' ] ;
Original file line number Diff line number Diff line change 11{
22 "name" : " cli-rhea" ,
3- "version" : " 2.1.1 " ,
3+ "version" : " 2.1.2 " ,
44 "description" : " Client interface built on amqp/rhea lib" ,
55 "scripts" : {
66 "test" : " mocha test/*Test.js" ,
You can’t perform that action at this time.
0 commit comments