Skip to content
This repository has been archived by the owner on Sep 25, 2018. It is now read-only.

Commit

Permalink
Use strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeard4 committed Apr 5, 2017
1 parent 2e131a1 commit f599fa5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions lib/scion.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.

"use strict";

var extend = Object.assign ||
function (to, from){
Object.keys(from).forEach(function(k){
Expand Down
8 changes: 4 additions & 4 deletions test/harness/common/setup-nodeunit-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ var testSerializations = [true, false];
var testGenAsync = [true, false];

var testOptions = [];
//testSerializations.forEach(function(testSerialization){
//testGenAsync.forEach(function(testGenAsync){
testSerializations.forEach(function(testSerialization){
testGenAsync.forEach(function(testGenAsync){
tests.forEach(function(test){
testOptions.push({
testSerialization : false,
Expand All @@ -17,8 +17,8 @@ var testOptions = [];
name : test.name + (false ? '(serialization)' : '') + (false ? '(async)' : '')
});
});
//});
//})
});
})

module.exports = function(scion){

Expand Down

0 comments on commit f599fa5

Please sign in to comment.