// package
is-string
type: "module"
// preferences
// replacements (1)
snippet::is-string
Simple or drop-in replacementThis package is no longer necessary. You can use `typeof` to check if a value is a string.
// example
const isString = (value) =>
typeof value === 'string';