@foxeltech/angular-ui 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -363,10 +363,6 @@ class FxUtils {
363
363
  const isEmail = emailRegex.test(value);
364
364
  return isEmail;
365
365
  }
366
- static isStrongPassword(password) {
367
- const regex = /^(?=.{6,}$)(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[^A-Za-z0-9]).*$/;
368
- return regex.test(password);
369
- }
370
366
  static formatSizeUnits(bytes) {
371
367
  if (bytes >= 1073741824) {
372
368
  return (bytes / 1073741824).toFixed(2) + ' GB';