Skip to content

Commit

Permalink
[FAB-4860] BaseClient.js missing 'use strict'
Browse files Browse the repository at this point in the history
For older node.js versions pre v6.9.4 the 'use strict' is required
for ES5 features like 'class' and 'let'.

Change-Id: I591709a55e65f5216eff6d01475d4715753aeeee
Signed-off-by: Jim Zhang <[email protected]>
  • Loading branch information
jimthematrix committed Jun 19, 2017
1 parent 164b777 commit 9f9659f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fabric-client/lib/BaseClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
#
# SPDX-License-Identifier: Apache-2.0
*/

'use strict';

var sdkUtils = require('./utils.js');

/**
Expand Down

0 comments on commit 9f9659f

Please sign in to comment.