add missing use strict declarations

This commit is contained in:
Sebastian McKenzie
2015-01-26 15:53:24 +11:00
parent 8243a34b69
commit 3db7811f00
4 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
"use strict";
module.exports = function cloneDeep(obj) {
var obj2 = {};
if (!obj) return obj2;

View File

@@ -1,3 +1,5 @@
"use strict";
var traverse = require("../../../traverse");
var t = require("../../../types");

View File

@@ -1,3 +1,5 @@
"use strict";
exports.optional = true;
exports.Identifier = function (node, parent, scope, context, file) {

View File

@@ -1,3 +1,5 @@
"use strict";
module.exports = Node;
var acorn = require("acorn-6to5");