Files
browser-scripts/scripts/hungergames-brantsteele-webp/main.ts
2024-01-24 18:44:34 -06:00

13 lines
378 B
TypeScript

declare var validateForm: Function
validateForm = Function(
validateForm
.toString()
.replace(/^function validateForm\(\)(.|\n)*?\{/, '')
.replace(/\}$/, '')
.replaceAll(
'var regexp = /(https?:\\/\\/.*\\.(?:png|jpg|gif|bmp|jpeg))$/i',
'var regexp = /(https?:\\/\\/.*\\.(?:png|jpg|gif|bmp|jpeg|webp))$/i'
)
)