We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579b3be commit 966eebbCopy full SHA for 966eebb
src/amplitude-client.js
@@ -2114,21 +2114,4 @@ AmplitudeClient.prototype.setServerUrl = function setServerUrl(serverUrl) {
2114
}
2115
};
2116
2117
-/**
2118
- * Upload all unsent events.
2119
- * @public
2120
- * @example amplitudeClient.uploadEvents();
2121
- */
2122
-AmplitudeClient.prototype.uploadEvents = function uploadEvents() {
2123
- if (this._shouldDeferCall()) {
2124
- return this._q.push(['uploadEvents'].concat(Array.prototype.slice.call(arguments, 0)));
2125
- }
2126
-
2127
- try {
2128
- this.sendEvents();
2129
- } catch (e) {
2130
- utils.log.error(e);
2131
2132
-};
2133
2134
export default AmplitudeClient;
0 commit comments