Skip to content

Commit

Permalink
Gaaaah lint
Browse files Browse the repository at this point in the history
  • Loading branch information
calculuschild committed Jun 30, 2020
1 parent 4db32dc commit 4e7902e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tokenizer.js
Expand Up @@ -493,7 +493,7 @@ module.exports = class Tokenizer {
let cap = this.rules.inline.preStrong.exec(src);

if (cap) {
maskedSrc = maskedSrc.slice(-1*src.length);
maskedSrc = maskedSrc.slice(-1 * src.length);
cap = this.rules.inline.strong.exec(maskedSrc);

if (cap) {
Expand All @@ -512,7 +512,7 @@ module.exports = class Tokenizer {
let cap = this.rules.inline.preEm.exec(src);

if (cap) {
maskedSrc = maskedSrc.slice(-1*src.length);
maskedSrc = maskedSrc.slice(-1 * src.length);
cap = this.rules.inline.em.exec(maskedSrc);

if (cap) {
Expand Down

0 comments on commit 4e7902e

Please sign in to comment.