Skip to content

Commit

Permalink
remove use strict
Browse files Browse the repository at this point in the history
  • Loading branch information
amitguptagwl committed Dec 26, 2021
1 parent 7d7792c commit f2a201f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/cli/cli.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env node
'use strict';

/*eslint-disable no-console*/
import fs from 'fs';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/read.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';


// Copyright 2013 Timothy J Fontaine <[email protected]>
//
Expand Down
2 changes: 1 addition & 1 deletion src/fxp.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';


import * as XMLValidator from './validator.js';
import XMLParser from './xmlparser/XMLParser.js';
Expand Down
2 changes: 1 addition & 1 deletion src/util.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';


const nameStartChar = ':A-Za-z_\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD';
const nameChar = nameStartChar + '\\-.\\d\\u00B7\\u0300-\\u036F\\u203F-\\u2040';
Expand Down
2 changes: 1 addition & 1 deletion src/xmlbuilder/json2xml.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';

//parse Empty Node as self closing node
import buildFromOrderedJs from './orderedJs2Xml.js';

Expand Down
2 changes: 1 addition & 1 deletion src/xmlparser/OrderedObjParser.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';

///@ts-check

import * as util from '../util.js';
Expand Down
2 changes: 1 addition & 1 deletion src/xmlparser/node2json.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';


/**
*
Expand Down
2 changes: 1 addition & 1 deletion src/xmlparser/xmlNode.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
'use strict';


class XmlNode{
constructor(tagname) {
Expand Down

0 comments on commit f2a201f

Please sign in to comment.