Package to replace
is-alphanumerical
Suggested replacement(s)
const isAlphanumerical = (character) =>
/^[a-z0-9]$/i.test(
typeof character === 'string'
? character.slice(0, 1)
: String.fromCharCode(character)
)
For string-only : /^[a-z0-9]/.test(ch)
Manifest type
native (replaceable by a built-in platform feature)
Rationale
composition of #998 + #1000 , inlinable as well
Availability
No response
Code example (optional)
Package to replace
is-alphanumericalSuggested replacement(s)
For string-only :
/^[a-z0-9]/.test(ch)Manifest type
native (replaceable by a built-in platform feature)
Rationale
composition of #998 + #1000 , inlinable as well
Availability
No response
Code example (optional)