mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-12 09:26:33 +01:00
5 lines
138 B
JavaScript
5 lines
138 B
JavaScript
|
// Polyfill for old Safari versions
|
||
|
if (!Object.hasOwn) {
|
||
|
Object.hasOwn = function (obj, prop) { return obj.hasOwnProperty(prop); }
|
||
|
}
|