Skip to content

Commit 83a623c

Browse files
committed
Latest Version Build
1 parent 94c35ba commit 83a623c

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

dist/comfy.js

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
2-
// Comfy.JS v1.1.26
2+
// Comfy.JS v1.1.27
33
var tmi = require( "tmi.js" );
44
var fetch = require( "node-fetch" );
55
var NodeSocket = require( "ws" );
@@ -814,7 +814,7 @@ var comfyJS = {
814814
useEventSub: true, // set to false to use PubSub
815815
chatModes: {},
816816
version: function() {
817-
return "1.1.26";
817+
return "1.1.27";
818818
},
819819
onError: function( error ) {
820820
console.error( "Error:", error );
@@ -1470,18 +1470,19 @@ var getGlobal = function () {
14701470
throw new Error('unable to locate global object');
14711471
}
14721472

1473-
var global = getGlobal();
1473+
var globalObject = getGlobal();
14741474

1475-
module.exports = exports = global.fetch;
1475+
module.exports = exports = globalObject.fetch;
14761476

14771477
// Needed for TypeScript and Webpack.
1478-
if (global.fetch) {
1479-
exports.default = global.fetch.bind(global);
1478+
if (globalObject.fetch) {
1479+
exports.default = globalObject.fetch.bind(globalObject);
14801480
}
14811481

1482-
exports.Headers = global.Headers;
1483-
exports.Request = global.Request;
1484-
exports.Response = global.Response;
1482+
exports.Headers = globalObject.Headers;
1483+
exports.Request = globalObject.Request;
1484+
exports.Response = globalObject.Response;
1485+
14851486
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
14861487
},{}],3:[function(require,module,exports){
14871488
'use strict';

dist/comfy.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comfy.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)