Skip to content

Commit

Permalink
Merge pull request #69 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
Aosanders committed Jul 9, 2018
2 parents cfce762 + 2e7bdc5 commit 66fa633
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions can-fixture-socket.js
@@ -1,3 +1,4 @@
"use strict";
var fixtureSocket = require('./src/index');
var fixtureStore = require('./src/store');

Expand Down
1 change: 1 addition & 0 deletions src/feathers-client.js
@@ -1,3 +1,4 @@
"use strict";
/*
* FEATHERS protocol.
* Feathers service api (REST provider): https://docs.feathersjs.com/rest/readme.html
Expand Down
1 change: 1 addition & 0 deletions src/index.js
@@ -1,3 +1,4 @@
"use strict";
/*
* Summary: `io(url)` creates an instance of `io.Manager` for the given url and stores it in cache of managers `io.managers`.
* If `io` is called with the same URL several times it will lookup Manager in the cache.
Expand Down
1 change: 1 addition & 0 deletions src/store.js
@@ -1,3 +1,4 @@
"use strict";
var extractResponse = require('can-fixture/core').extractResponse;

/**
Expand Down

0 comments on commit 66fa633

Please sign in to comment.