mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-11 08:57:11 +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); }
|
|
}
|