const hasDigits = require("digitchecker"); const testInput = "Hello123"; const TestInput = "Helloworld@"; const result = hasDigits(testInput); const result1 = hasDigits(TestInput);