Skip to content

Commit

Permalink
Move files
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Mar 6, 2022
1 parent 4d50909 commit bc58018
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions src/config/normalize/lib/star_dot_path/entries.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import isPlainObj from 'is-plain-obj'

import { isAnyToken } from './parsing/any.js'
import { serialize } from './parsing/serialize.js'
import { isAnyToken } from './parsing/tokens/any.js'
import {
convertIndexInteger,
convertIndexString,
getArrayIndex,
isIndexToken,
} from './parsing/array.js'
import { isRegExpToken } from './parsing/regexp.js'
import { serialize } from './parsing/serialize.js'
} from './parsing/tokens/array.js'
import { isRegExpToken } from './parsing/tokens/regexp.js'

// List all values (and their associated path) matching a specific query for
// on specific target value.
Expand Down
8 changes: 4 additions & 4 deletions src/config/normalize/lib/star_dot_path/parsing/parse.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { createAnyToken } from './any.js'
import { convertIndexInteger } from './array.js'
import { normalizePath } from './normalize.js'
import { parseRegExpToken } from './regexp.js'
import { createAnyToken } from './tokens/any.js'
import { convertIndexInteger } from './tokens/array.js'
import { parseRegExpToken } from './tokens/regexp.js'
import {
ESCAPE,
SEPARATOR,
ANY,
MINUS,
REGEXP_DELIM,
SPECIAL_CHARS,
} from './special.js'
} from './tokens/special.js'
import { isQueryString } from './validate.js'

// Parse a query string into an array of tokens.
Expand Down
8 changes: 4 additions & 4 deletions src/config/normalize/lib/star_dot_path/parsing/serialize.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { isAnyToken } from './any.js'
import { isIndexToken, serializeIndexToken } from './array.js'
import { parse } from './parse.js'
import { isRegExpToken, serializeRegExpToken } from './regexp.js'
import { SEPARATOR, ANY, escapeSpecialChars } from './special.js'
import { isAnyToken } from './tokens/any.js'
import { isIndexToken, serializeIndexToken } from './tokens/array.js'
import { isRegExpToken, serializeRegExpToken } from './tokens/regexp.js'
import { SEPARATOR, ANY, escapeSpecialChars } from './tokens/special.js'

// Inverse of `parse()`
// When passing a query string, it is parsed and re-serialized to validate and
Expand Down
6 changes: 3 additions & 3 deletions src/config/normalize/lib/star_dot_path/parsing/validate.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { inspect } from 'util'

import { isAnyToken } from './any.js'
import { isIndexToken } from './array.js'
import { isRegExpToken } from './regexp.js'
import { isAnyToken } from './tokens/any.js'
import { isIndexToken } from './tokens/array.js'
import { isRegExpToken } from './tokens/regexp.js'

// Most methods accept both query and path syntaxes.
// This checks which one is used.
Expand Down

0 comments on commit bc58018

Please sign in to comment.