Skip to content

Commit

Permalink
use strict is unnecessary for ES6 modules
Browse files Browse the repository at this point in the history
  • Loading branch information
dalcde committed May 16, 2021
1 parent a2b6009 commit 58fff81
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions rust_webserver/interface/display.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import {
generalPanel,
classPanel,
Expand Down
2 changes: 0 additions & 2 deletions rust_webserver/interface/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import { MainDisplay, UnitDisplay } from './display.js';
import { ExtSseq } from './sseq.js';
import { renderLaTeX, download } from './utils.js';
Expand Down
2 changes: 0 additions & 2 deletions rust_webserver/interface/panels.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import { STATE_ADD_DIFFERENTIAL } from './display.js';
import { rowToKaTeX, rowToLaTeX, matrixToKaTeX, vecToName } from './utils.js';
import { MIN_PAGE } from './sseq.js';
Expand Down
2 changes: 0 additions & 2 deletions rust_webserver/interface/sseq.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import { promptClass, vecToName } from './utils.js';
import { svgNS } from './chart.js';

Expand Down
2 changes: 0 additions & 2 deletions rust_webserver/interface/utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

export function vecToName(v, names) {
const items = [];
for (let i = 0; i < v.length; i++) {
Expand Down
2 changes: 0 additions & 2 deletions rust_webserver/wasm/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
'use strict';

import { MainDisplay, UnitDisplay } from './display.js';
import { ExtSseq } from './sseq.js';
import { renderLaTeX, download } from './utils.js';
Expand Down

0 comments on commit 58fff81

Please sign in to comment.