Skip to content

Commit

Permalink
Merge pull request #178 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 authored Jul 4, 2018
2 parents 69303ce + ac5d7d5 commit 0acd544
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions build.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
var stealTools = require("steal-tools");

stealTools.export({
Expand Down
1 change: 1 addition & 0 deletions can-view-scope.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
// # can/view/scope/scope.js
//
// This allows you to define a lookup context and parent contexts that a key's value can be retrieved from.
Expand Down
1 change: 1 addition & 0 deletions make-compute-like.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
var singleReference = require("can-single-reference");
var canReflect = require('can-reflect');

Expand Down
1 change: 1 addition & 0 deletions template-context.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
var SimpleMap = require("can-simple-map");

var TemplateContext = function() {
Expand Down

0 comments on commit 0acd544

Please sign in to comment.