Skip to content

Commit

Permalink
Merge pull request #134 from canjs/landscaper/4217-use-strict
Browse files Browse the repository at this point in the history
Adds use strict. Fixes canjs/canjs#4217
  • Loading branch information
chasenlehara committed Jul 4, 2018
2 parents 1e82adb + 85b9cf3 commit 2587f35
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
"browser": true,
"phantom": true,
"node": true,
"esversion": 6
"esversion": 6,
"validthis": true
}
1 change: 1 addition & 0 deletions benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
/* jshint ignore:start */
var b = require("steal-benchmark");
var Observation = require("can-observation");
Expand Down
1 change: 1 addition & 0 deletions can-observation.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
/* global require */
// # can-observation
var namespace = require('can-namespace');
Expand Down
1 change: 1 addition & 0 deletions recorder-dependency-helpers.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
// # Recorder Dependency Helpers
// This exposes two helpers:
// - `updateObservations` - binds and unbinds a diff of two observation records
Expand Down
1 change: 1 addition & 0 deletions temporarily-bind.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
var canReflect = require("can-reflect");

var temporarilyBoundNoOperation = function(){};
Expand Down

0 comments on commit 2587f35

Please sign in to comment.