RuoYi
2024-01-25 649cfe8652b3b25e553d1985a27da9aeec77daf4
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;
}
/**