Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(shared): Call an existing simpler function to determine the raw type #13126

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions packages/shared/src/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,12 @@ export const hasOwn = (

export const isArray: typeof Array.isArray = Array.isArray
export const isMap = (val: unknown): val is Map<any, any> =>
toTypeString(val) === '[object Map]'
export const isSet = (val: unknown): val is Set<any> =>
toTypeString(val) === '[object Set]'
toRawType(val) === 'Map'
export const isSet = (val: unknown): val is Set<any> => toRawType(val) === 'Set'

export const isDate = (val: unknown): val is Date =>
toTypeString(val) === '[object Date]'
export const isDate = (val: unknown): val is Date => toRawType(val) === 'Date'
export const isRegExp = (val: unknown): val is RegExp =>
toTypeString(val) === '[object RegExp]'
toRawType(val) === 'RegExp'
export const isFunction = (val: unknown): val is Function =>
typeof val === 'function'
export const isString = (val: unknown): val is string => typeof val === 'string'
Expand All @@ -72,7 +70,7 @@ export const toRawType = (value: unknown): string => {
}

export const isPlainObject = (val: unknown): val is object =>
toTypeString(val) === '[object Object]'
toRawType(val) === 'Object'

export const isIntegerKey = (key: unknown): boolean =>
isString(key) &&
Expand Down