刘继东
2024-03-02 b44e0e4de637a141181c44d5e103eb732455c26e
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;
}
/**