Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Mar 25, 2024
1 parent 0d21ccf commit 09d03ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/path/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ import { Match as MatchFilterFunction } from "./functions/match";
import { Search as SearchFilterFunction } from "./functions/search";
import { Value as ValueFilterFunction } from "./functions/value";
import { tokenize } from "./lex";
import { tokenize as non_standard_tokenize } from "./extra";
import {
tokenize as non_standard_tokenize,
Parser as NonStandardParser,
} from "./extra";
import { JSONPathNode, JSONPathNodeList } from "./node";
import { Parser } from "./parse";
import { Parser as NonStandardParser } from "./extra";
import { JSONPath } from "./path";
import { Token, TokenStream } from "./token";
import { JSONValue } from "../types";
Expand Down

0 comments on commit 09d03ee

Please sign in to comment.