- 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>
13 lines
358 B
JavaScript
13 lines
358 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
|
|
// `Math.signbit` method
|
|
// https://github.com/tc39/proposal-Math.signbit
|
|
$({ target: 'Math', stat: true, forced: true }, {
|
|
signbit: function signbit(x) {
|
|
var n = +x;
|
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
return n === n && n === 0 ? 1 / n === -Infinity : n < 0;
|
|
}
|
|
});
|