- 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>
9 lines
253 B
JavaScript
9 lines
253 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
|
|
// `Math.RAD_PER_DEG` constant
|
|
// https://rwaldron.github.io/proposal-math-extensions/
|
|
$({ target: 'Math', stat: true, nonConfigurable: true, nonWritable: true }, {
|
|
RAD_PER_DEG: 180 / Math.PI
|
|
});
|