RuoYi
2024-10-15 dc9f3ee72256c7ca1413d6f5489e4cb5d4a7eb7b
ruoyi-ui/src/utils/validate.js
@@ -65,10 +65,7 @@
 * @returns {Boolean}
 */
export function isString(str) {
  if (typeof str === 'string' || str instanceof String) {
    return true
  }
  return false
  return typeof str === 'string' || str instanceof String;
}
/**