Files
forge-build/javascript/gradio.js
2025-10-21 23:06:12 +07:00

8 lines
170 B
JavaScript
Executable File

// added to fix a weird error in gradio 4.19 at page load
Object.defineProperty(Array.prototype, 'toLowerCase', {
value: function() {
return this;
}
});