Skip to content

Commit

Permalink
Reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hlysine committed Aug 16, 2023
1 parent 6f482cf commit 9778c07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/expression.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
negatableSymbol,
quantifiableSymbol,
} from './types';
import GroupModifier, { GroupType } from './modifiers/GroupModifier';
import {
assign,
bind,
Expand All @@ -30,6 +29,7 @@ import {
import AlternationModifier from './modifiers/AlternationModifier';
import CaptureModifier from './modifiers/CaptureModifier';
import CharacterClassModifier from './modifiers/CharacterClassModifier';
import GroupModifier, { GroupType } from './modifiers/GroupModifier';
import NegationModifier from './modifiers/NegationModifier';
import QuantityModifier from './modifiers/QuantityModifier';
import RepeatQuantifier from './modifiers/RepeatQuantifier';
Expand Down
2 changes: 1 addition & 1 deletion src/modifiers/NegationModifier.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { charLiteral, isBracketGroup, isCharacterClass, negatableTokens } from '../helper';
import { RegExpModifier } from '../types';
import { charLiteral, isBracketGroup, isCharacterClass, negatableTokens } from '../helper';

export default class NegationModifier implements RegExpModifier {
public modify(regExp: string): [string, string?] {
Expand Down
2 changes: 1 addition & 1 deletion src/modifiers/QuantityModifier.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { charLiteral, isBracketGroup, isCharacterClass } from '../helper';
import { RegExpModifier } from '../types';
import { charLiteral, isBracketGroup, isCharacterClass } from '../helper';

const NOT_QUANTIFIABLE = new Set(['^', '$', '\\b', '\\B']);

Expand Down

0 comments on commit 9778c07

Please sign in to comment.