`isIdentifier` acts as a type guard when it shouldn’t
selrond opened this issue · 1 comments
selrond commented
Here https://github.com/sindresorhus/is-identifier/blob/f1222ac0a28b04d91d0e83bd25a08c8bbde0968d/index.d.ts#L18C1-L18C7 there’s a type predicate, where the value is narrowed to be a string when isIdentifier
returns true
.
Consider the following example:
export const constructJsonPath = (segments: Array<string>) => {
if (isEmpty(segments)) {
return ''
}
return segments.reduce((path, currentSegment) => {
if (currentSegment === '') {
return path
}
if (isIdentifier(currentSegment)) {
return path ? `${path}.${currentSegment}` : currentSegment
}
// string with spaces or an integer for instance is not a valid identifier, but still a string.
const segment = `["${currentSegment as string}"]`
return path ? `${path}${segment}` : segment
}, '')
}
The isIdentifier
thus acts as a type guard when it shouldn’t.