- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
15 lines
445 B
JavaScript
15 lines
445 B
JavaScript
'use strict';
|
|
var uncurryThis = require('../internals/function-uncurry-this');
|
|
|
|
// eslint-disable-next-line es/no-weak-map -- safe
|
|
var WeakMapPrototype = WeakMap.prototype;
|
|
|
|
module.exports = {
|
|
// eslint-disable-next-line es/no-weak-map -- safe
|
|
WeakMap: WeakMap,
|
|
set: uncurryThis(WeakMapPrototype.set),
|
|
get: uncurryThis(WeakMapPrototype.get),
|
|
has: uncurryThis(WeakMapPrototype.has),
|
|
remove: uncurryThis(WeakMapPrototype['delete'])
|
|
};
|