Skip to content

Commit

Permalink
Move file
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 20, 2022
1 parent 660e833 commit d671bbe
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/config/normalize/lib/wild_wild_parser/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ export {
isParentPath,
} from './compare.js'
export { normalizeQuery, normalizePath } from './normalize.js'
export { parseQuery, parsePath } from './parse.js'
export { parseQuery, parsePath } from './parse/main.js'
export { serializeQuery, serializePath } from './serialize.js'
export { getTokenType } from './tokens/main.js'
4 changes: 2 additions & 2 deletions src/config/normalize/lib/wild_wild_parser/normalize.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { parsePath, parseQuery } from './parse.js'
import { parsePath, parseQuery } from './parse/main.js'
import { normalizeQueryArrays } from './validate/arrays.js'
import { isQueryString } from './validate/string.js'
import { normalizeArrayPath } from './validate/path.js'
import { isQueryString } from './validate/string.js'

// There are two formats:
// - Query string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import {
ARRAY_SEPARATOR_NAME,
TOKEN_SEPARATOR,
SPECIAL_CHARS,
} from './tokens/escape.js'
import { getStringTokenType } from './tokens/main.js'
import { normalizeArraysPath } from './validate/path.js'
import { validateEmptyQuery, validateQueryString } from './validate/string.js'
import { throwQueryError } from './validate/throw.js'
} from '../tokens/escape.js'
import { getStringTokenType } from '../tokens/main.js'
import { normalizeArraysPath } from '../validate/path.js'
import { validateEmptyQuery, validateQueryString } from '../validate/string.js'
import { throwQueryError } from '../validate/throw.js'

// Parse a query string into an array of tokens.
// Also validate and normalize it.
Expand Down

0 comments on commit d671bbe

Please sign in to comment.