@wishknish/knishio-client-js 0.4.45 → 0.4.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wishknish/knishio-client-js",
3
- "version": "0.4.45",
3
+ "version": "0.4.46",
4
4
  "productName": "Knish.IO Javascript SDK Client",
5
5
  "description": "JavaScript implementation of the Knish.IO SDK to consume Knish.IO GraphQL APIs.",
6
6
  "license": "GPL-3.0-or-later",
package/src/TokenUnit.js CHANGED
@@ -109,7 +109,7 @@ export default class TokenUnit {
109
109
  * @return array
110
110
  */
111
111
  toData() {
112
- return [ this.id, this.name, this.metas, ];
112
+ return [ this.id, this.name, this.metas ];
113
113
  }
114
114
 
115
115
  /**
package/src/Wallet.js CHANGED
@@ -195,7 +195,7 @@ export default class Wallet {
195
195
  * @param recipientWallet
196
196
  */
197
197
  splitUnits (
198
- units, // Array: token unit IDs
198
+ units, // Array: token unit IDs
199
199
  remainderWallet,
200
200
  recipientWallet = null
201
201
  ) {
package/src/test/Test.js CHANGED
@@ -226,9 +226,9 @@ export default class Test {
226
226
  code: '1234'
227
227
  } );
228
228
 
229
- console.log( ` ############### testCreateIdentifier ###############` );
229
+ console.log( ' ############### testCreateIdentifier ###############' );
230
230
  if ( response.reason() !== 'Outdated code' ) {
231
- console.error( 'Error with response.' )
231
+ console.error( 'Error with response.' );
232
232
  }
233
233
  this.debug( response );
234
234
  }