Warning: unreachable code after return statement
-
On line 13596 of
mammoth-editor.js
you haveeval(obj);
Apart from
eval()
being a function that’s really frowned upon, this produces a warning in the browser console that this will never run because you have areturn
statement right above it.Just deleting that line gets rid of the warning.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Warning: unreachable code after return statement’ is closed to new replies.