Skip to content

Commit

Permalink
fix: Add 'use strict' to all files
Browse files Browse the repository at this point in the history
  • Loading branch information
karfau committed Feb 28, 2022
1 parent 8626514 commit fef1d79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/dom-parser.js
@@ -1,3 +1,5 @@
'use strict'

var conventions = require("./conventions");
var dom = require('./dom')
var entities = require('./entities');
Expand Down
2 changes: 2 additions & 0 deletions lib/index.js
@@ -1,3 +1,5 @@
'use strict'

var dom = require('./dom')
exports.DOMImplementation = dom.DOMImplementation
exports.XMLSerializer = dom.XMLSerializer
Expand Down
2 changes: 2 additions & 0 deletions lib/sax.js
@@ -1,3 +1,5 @@
'use strict'

var conventions = require("./conventions");
var NAMESPACE = conventions.NAMESPACE;
var MIME_TYPE = conventions.MIME_TYPE;
Expand Down

0 comments on commit fef1d79

Please sign in to comment.