Remove console.logs

This commit is contained in:
Jamie Kyle 2025-07-17 10:41:47 -07:00
parent 92361eaeb2
commit e5a21ec69e
2 changed files with 0 additions and 4 deletions

View File

@ -79,8 +79,6 @@ export function createCreditCardExpirationFormatter(): Formatter {
}
}
console.log(year)
if (year.length >= 4) {
year = year.slice(2, 4)
} else {

View File

@ -143,9 +143,7 @@ suite("getNextInputState", () => {
test(`${input} -> ${expectedNormal} (deleting)`, () => {
let state = vizToState(input)
console.log(state)
let result = getNextInputState(TEST_FORMATTER, state.value, state.start, state.end, true)
// console.log(result)
let actual = stateToViz(result)
expect(actual).toBe(expectedDeleting)
})