videomail-client 8.2.0 → 8.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +1 -0
- package/audit-ci.json +0 -1
- package/gulpfile.js +2 -13
- package/package.json +5 -6
- package/prototype/js/videomail-client.js +148 -223
- package/prototype/js/videomail-client.min.js +11 -15
- package/prototype/js/videomail-client.min.js.map +1 -1
- package/src/js/wrappers/visuals/recorder.js +3 -3
- package/TODO.md +0 -18
|
@@ -625,59 +625,11 @@ Date.now = Date.now || function now() {
|
|
|
625
625
|
return new Date().getTime();
|
|
626
626
|
};
|
|
627
627
|
|
|
628
|
-
},{"events":
|
|
629
|
-
|
|
630
|
-
(function (w) {
|
|
631
|
-
"use strict";
|
|
632
|
-
|
|
633
|
-
function findBest(atobNative) {
|
|
634
|
-
// normal window
|
|
635
|
-
if ('function' === typeof atobNative) { return atobNative; }
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
// browserify (web worker)
|
|
639
|
-
if ('function' === typeof Buffer) {
|
|
640
|
-
return function atobBrowserify(a) {
|
|
641
|
-
//!! Deliberately using an API that's deprecated in node.js because
|
|
642
|
-
//!! this file is for browsers and we expect them to cope with it.
|
|
643
|
-
//!! Discussion: github.com/node-browser-compat/atob/pull/9
|
|
644
|
-
return new Buffer(a, 'base64').toString('binary');
|
|
645
|
-
};
|
|
646
|
-
}
|
|
647
|
-
|
|
648
|
-
// ios web worker with base64js
|
|
649
|
-
if ('object' === typeof w.base64js) {
|
|
650
|
-
// bufferToBinaryString
|
|
651
|
-
// https://git.coolaj86.com/coolaj86/unibabel.js/blob/master/index.js#L50
|
|
652
|
-
return function atobWebWorker_iOS(a) {
|
|
653
|
-
var buf = w.base64js.b64ToByteArray(a);
|
|
654
|
-
return Array.prototype.map.call(buf, function (ch) {
|
|
655
|
-
return String.fromCharCode(ch);
|
|
656
|
-
}).join('');
|
|
657
|
-
};
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
return function () {
|
|
661
|
-
// ios web worker without base64js
|
|
662
|
-
throw new Error("You're probably in an old browser or an iOS webworker." +
|
|
663
|
-
" It might help to include beatgammit's base64-js.");
|
|
664
|
-
};
|
|
665
|
-
}
|
|
628
|
+
},{"events":42,"inherits":64,"raf":83}],11:[function(_dereq_,module,exports){
|
|
629
|
+
function t(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var r=/*#__PURE__*/t(_dereq_("typedarray-to-buffer"));module.exports=/*#__PURE__*/function(){function t(t){this.float32Array=void 0,this.float32Array=t}return t.prototype.toBuffer=function(){var t=new Int16Array(this.float32Array.length);return this.float32Array.forEach(function(r,o){t[o]=32767*Math.min(1,r)}),r.default(t)},t}();
|
|
666
630
|
|
|
667
|
-
var atobBest = findBest(w.atob);
|
|
668
|
-
w.atob = atobBest;
|
|
669
631
|
|
|
670
|
-
|
|
671
|
-
module.exports = atobBest;
|
|
672
|
-
}
|
|
673
|
-
}(window));
|
|
674
|
-
|
|
675
|
-
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
676
|
-
},{"buffer":16}],12:[function(_dereq_,module,exports){
|
|
677
|
-
var r=_dereq_("typedarray-to-buffer"),a=_dereq_("validate.io-float32array");module.exports=function(e){if(!e)throw new Error("A Float32Array parameter is missing.");if(!a(e))throw new Error("The parameter is not a Float32Array.");this.toBuffer=function(){var a,t=e.length,o=new Int16Array(t);for(a=0;a<t;a++)o[a]=32767*Math.min(1,e[a]);return r(o)}};
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
},{"typedarray-to-buffer":110,"validate.io-float32array":113}],13:[function(_dereq_,module,exports){
|
|
632
|
+
},{"typedarray-to-buffer":109}],12:[function(_dereq_,module,exports){
|
|
681
633
|
'use strict'
|
|
682
634
|
|
|
683
635
|
exports.byteLength = byteLength
|
|
@@ -829,9 +781,9 @@ function fromByteArray (uint8) {
|
|
|
829
781
|
return parts.join('')
|
|
830
782
|
}
|
|
831
783
|
|
|
832
|
-
},{}],
|
|
784
|
+
},{}],13:[function(_dereq_,module,exports){
|
|
833
785
|
|
|
834
|
-
},{}],
|
|
786
|
+
},{}],14:[function(_dereq_,module,exports){
|
|
835
787
|
/*!
|
|
836
788
|
* Cross-Browser Split 1.1.1
|
|
837
789
|
* Copyright 2007-2012 Steven Levithan <stevenlevithan.com>
|
|
@@ -939,7 +891,7 @@ module.exports = (function split(undef) {
|
|
|
939
891
|
return self;
|
|
940
892
|
})();
|
|
941
893
|
|
|
942
|
-
},{}],
|
|
894
|
+
},{}],15:[function(_dereq_,module,exports){
|
|
943
895
|
(function (Buffer){(function (){
|
|
944
896
|
/*!
|
|
945
897
|
* The buffer module from node.js, for the browser.
|
|
@@ -2720,7 +2672,7 @@ function numberIsNaN (obj) {
|
|
|
2720
2672
|
}
|
|
2721
2673
|
|
|
2722
2674
|
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
2723
|
-
},{"base64-js":
|
|
2675
|
+
},{"base64-js":12,"buffer":15,"ieee754":62}],16:[function(_dereq_,module,exports){
|
|
2724
2676
|
'use strict';
|
|
2725
2677
|
|
|
2726
2678
|
var GetIntrinsic = _dereq_('get-intrinsic');
|
|
@@ -2737,7 +2689,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
2737
2689
|
return intrinsic;
|
|
2738
2690
|
};
|
|
2739
2691
|
|
|
2740
|
-
},{"./":
|
|
2692
|
+
},{"./":17,"get-intrinsic":49}],17:[function(_dereq_,module,exports){
|
|
2741
2693
|
'use strict';
|
|
2742
2694
|
|
|
2743
2695
|
var bind = _dereq_('function-bind');
|
|
@@ -2774,11 +2726,11 @@ if ($defineProperty) {
|
|
|
2774
2726
|
module.exports.apply = applyBind;
|
|
2775
2727
|
}
|
|
2776
2728
|
|
|
2777
|
-
},{"es-define-property":
|
|
2778
|
-
var t
|
|
2729
|
+
},{"es-define-property":34,"es-errors/type":40,"function-bind":47,"get-intrinsic":49,"set-function-length":100}],18:[function(_dereq_,module,exports){
|
|
2730
|
+
function t(t){return t&&"object"==typeof t&&"default"in t?t:{default:t}}var e,i=/*#__PURE__*/t(_dereq_("typedarray-to-buffer")),r="undefined"!=typeof document&&"function"==typeof document.createElement,n=r?["webp","jpeg"]:["png"],o=/*#__PURE__*/function(){function t(t,e,i){if(void 0===e&&(e=n),void 0===i&&(i=.5),this.quality=void 0,this.types=void 0,this.canvas=void 0,e.length>2)throw new Error("Too many image types are specified!");this.canvas=t,this.quality=i,this.types=e}var o=t.prototype;return o.composeMimeType=function(t){var e;return this.types[t]&&(e="image/"+this.types[t]),e},o.isMatch=function(t,e){return t.match(e)},o.getTestCanvas=function(){var t;return r?(t=document.createElement("canvas")).width=t.height=1:t=this.canvas,t},o.canvasSupportsMimeType=function(t){try{var e=this.getTestCanvas(),i=e.toDataURL&&e.toDataURL(t);return this.isMatch(i,t)}catch(t){return!1}},o.figureMimeType=function(){var t=this.composeMimeType(0);return t&&this.canvasSupportsMimeType(t)||(this.types[1]?(t=this.composeMimeType(1))&&!this.canvasSupportsMimeType(t)&&(t=void 0):t=void 0),t},o.uriToBuffer=function(e){var n,o=e.split(",")[1];if(!o)throw new Error("Empty uri string given!");if(!(n=r?window.atob(o):null==t.atob?void 0:t.atob(o)))throw new Error("Byte are empty, something within atob went wrong.");for(var a=new Uint8Array(n.length),s=0,u=n.length;s<u;s++)a[s]=n.charCodeAt(s);return i.default(a)},o.toBuffer=function(){var t,e=this.getMimeType();if(e){var i=this.canvas.toDataURL(e,this.quality);t=this.uriToBuffer(i)}return t},o.getMimeType=function(){return e&&r||(e=this.figureMimeType()),e},t}();o.atob=void 0,module.exports=o;
|
|
2779
2731
|
|
|
2780
2732
|
|
|
2781
|
-
},{"
|
|
2733
|
+
},{"typedarray-to-buffer":109}],19:[function(_dereq_,module,exports){
|
|
2782
2734
|
// contains, add, remove, toggle
|
|
2783
2735
|
var indexof = _dereq_('indexof')
|
|
2784
2736
|
|
|
@@ -2879,7 +2831,7 @@ function isTruthy(value) {
|
|
|
2879
2831
|
return !!value
|
|
2880
2832
|
}
|
|
2881
2833
|
|
|
2882
|
-
},{"indexof":
|
|
2834
|
+
},{"indexof":63}],20:[function(_dereq_,module,exports){
|
|
2883
2835
|
/*
|
|
2884
2836
|
* classList.js: Cross-browser full element.classList implementation.
|
|
2885
2837
|
* 1.1.20150312
|
|
@@ -3121,7 +3073,7 @@ if (objCtr.defineProperty) {
|
|
|
3121
3073
|
}
|
|
3122
3074
|
|
|
3123
3075
|
|
|
3124
|
-
},{}],
|
|
3076
|
+
},{}],21:[function(_dereq_,module,exports){
|
|
3125
3077
|
|
|
3126
3078
|
/**
|
|
3127
3079
|
* Expose `Emitter`.
|
|
@@ -3298,7 +3250,7 @@ Emitter.prototype.hasListeners = function(event){
|
|
|
3298
3250
|
return !! this.listeners(event).length;
|
|
3299
3251
|
};
|
|
3300
3252
|
|
|
3301
|
-
},{}],
|
|
3253
|
+
},{}],22:[function(_dereq_,module,exports){
|
|
3302
3254
|
var DOCUMENT_POSITION_CONTAINED_BY = 16
|
|
3303
3255
|
|
|
3304
3256
|
module.exports = contains
|
|
@@ -3313,7 +3265,7 @@ function contains(container, elem) {
|
|
|
3313
3265
|
return comparison === 0 || comparison & DOCUMENT_POSITION_CONTAINED_BY
|
|
3314
3266
|
}
|
|
3315
3267
|
|
|
3316
|
-
},{}],
|
|
3268
|
+
},{}],23:[function(_dereq_,module,exports){
|
|
3317
3269
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
3318
3270
|
//
|
|
3319
3271
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -3422,7 +3374,7 @@ function objectToString(o) {
|
|
|
3422
3374
|
return Object.prototype.toString.call(o);
|
|
3423
3375
|
}
|
|
3424
3376
|
|
|
3425
|
-
},{"buffer":
|
|
3377
|
+
},{"buffer":15}],24:[function(_dereq_,module,exports){
|
|
3426
3378
|
// create-error.js 0.3.1
|
|
3427
3379
|
// (c) 2013 Tim Griesser
|
|
3428
3380
|
// This source may be freely distributed under the MIT license.
|
|
@@ -3542,7 +3494,7 @@ function clone(target) {
|
|
|
3542
3494
|
}
|
|
3543
3495
|
});
|
|
3544
3496
|
|
|
3545
|
-
},{}],
|
|
3497
|
+
},{}],25:[function(_dereq_,module,exports){
|
|
3546
3498
|
'use strict';
|
|
3547
3499
|
|
|
3548
3500
|
var isMergeableObject = function isMergeableObject(value) {
|
|
@@ -3677,7 +3629,7 @@ var deepmerge_1 = deepmerge;
|
|
|
3677
3629
|
|
|
3678
3630
|
module.exports = deepmerge_1;
|
|
3679
3631
|
|
|
3680
|
-
},{}],
|
|
3632
|
+
},{}],26:[function(_dereq_,module,exports){
|
|
3681
3633
|
'use strict';
|
|
3682
3634
|
|
|
3683
3635
|
var $defineProperty = _dereq_('es-define-property');
|
|
@@ -3735,7 +3687,7 @@ module.exports = function defineDataProperty(
|
|
|
3735
3687
|
}
|
|
3736
3688
|
};
|
|
3737
3689
|
|
|
3738
|
-
},{"es-define-property":
|
|
3690
|
+
},{"es-define-property":34,"es-errors/syntax":39,"es-errors/type":40,"gopd":53}],27:[function(_dereq_,module,exports){
|
|
3739
3691
|
'use strict';
|
|
3740
3692
|
|
|
3741
3693
|
module.exports = function defined() {
|
|
@@ -3746,7 +3698,7 @@ module.exports = function defined() {
|
|
|
3746
3698
|
}
|
|
3747
3699
|
};
|
|
3748
3700
|
|
|
3749
|
-
},{}],
|
|
3701
|
+
},{}],28:[function(_dereq_,module,exports){
|
|
3750
3702
|
var inherits = _dereq_("inherits");
|
|
3751
3703
|
var global = _dereq_("global");
|
|
3752
3704
|
var EventEmitter = _dereq_("events");
|
|
@@ -3768,7 +3720,7 @@ var makeDespot = function () {
|
|
|
3768
3720
|
|
|
3769
3721
|
module.exports = makeDespot();
|
|
3770
3722
|
|
|
3771
|
-
},{"events":
|
|
3723
|
+
},{"events":42,"global":52,"inherits":64}],29:[function(_dereq_,module,exports){
|
|
3772
3724
|
'use strict'
|
|
3773
3725
|
|
|
3774
3726
|
var document = _dereq_('global/document')
|
|
@@ -3808,7 +3760,7 @@ function noopShim () {
|
|
|
3808
3760
|
|
|
3809
3761
|
function noop () {}
|
|
3810
3762
|
|
|
3811
|
-
},{"./keys":
|
|
3763
|
+
},{"./keys":30,"geval":51,"global/document":31}],30:[function(_dereq_,module,exports){
|
|
3812
3764
|
'use strict'
|
|
3813
3765
|
|
|
3814
3766
|
module.exports = keys
|
|
@@ -3833,7 +3785,7 @@ function lowercaseFirst (string) {
|
|
|
3833
3785
|
return string.substring(0, 1).toLowerCase() + string.substring(1)
|
|
3834
3786
|
}
|
|
3835
3787
|
|
|
3836
|
-
},{}],
|
|
3788
|
+
},{}],31:[function(_dereq_,module,exports){
|
|
3837
3789
|
(function (global){(function (){
|
|
3838
3790
|
var topLevel = typeof global !== 'undefined' ? global :
|
|
3839
3791
|
typeof window !== 'undefined' ? window : {}
|
|
@@ -3854,7 +3806,7 @@ if (typeof document !== 'undefined') {
|
|
|
3854
3806
|
module.exports = doccy;
|
|
3855
3807
|
|
|
3856
3808
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
3857
|
-
},{"min-document":
|
|
3809
|
+
},{"min-document":13}],32:[function(_dereq_,module,exports){
|
|
3858
3810
|
function polyfill(window) {
|
|
3859
3811
|
var ElementPrototype = window.Element.prototype;
|
|
3860
3812
|
|
|
@@ -3892,7 +3844,7 @@ function polyfill(window) {
|
|
|
3892
3844
|
module.exports = polyfill;
|
|
3893
3845
|
|
|
3894
3846
|
|
|
3895
|
-
},{}],
|
|
3847
|
+
},{}],33:[function(_dereq_,module,exports){
|
|
3896
3848
|
(function (process){(function (){
|
|
3897
3849
|
var once = _dereq_('once');
|
|
3898
3850
|
|
|
@@ -3990,7 +3942,7 @@ var eos = function(stream, opts, callback) {
|
|
|
3990
3942
|
module.exports = eos;
|
|
3991
3943
|
|
|
3992
3944
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
3993
|
-
},{"_process":
|
|
3945
|
+
},{"_process":77,"once":74}],34:[function(_dereq_,module,exports){
|
|
3994
3946
|
'use strict';
|
|
3995
3947
|
|
|
3996
3948
|
var GetIntrinsic = _dereq_('get-intrinsic');
|
|
@@ -4008,49 +3960,49 @@ if ($defineProperty) {
|
|
|
4008
3960
|
|
|
4009
3961
|
module.exports = $defineProperty;
|
|
4010
3962
|
|
|
4011
|
-
},{"get-intrinsic":
|
|
3963
|
+
},{"get-intrinsic":49}],35:[function(_dereq_,module,exports){
|
|
4012
3964
|
'use strict';
|
|
4013
3965
|
|
|
4014
3966
|
/** @type {import('./eval')} */
|
|
4015
3967
|
module.exports = EvalError;
|
|
4016
3968
|
|
|
4017
|
-
},{}],
|
|
3969
|
+
},{}],36:[function(_dereq_,module,exports){
|
|
4018
3970
|
'use strict';
|
|
4019
3971
|
|
|
4020
3972
|
/** @type {import('.')} */
|
|
4021
3973
|
module.exports = Error;
|
|
4022
3974
|
|
|
4023
|
-
},{}],
|
|
3975
|
+
},{}],37:[function(_dereq_,module,exports){
|
|
4024
3976
|
'use strict';
|
|
4025
3977
|
|
|
4026
3978
|
/** @type {import('./range')} */
|
|
4027
3979
|
module.exports = RangeError;
|
|
4028
3980
|
|
|
4029
|
-
},{}],
|
|
3981
|
+
},{}],38:[function(_dereq_,module,exports){
|
|
4030
3982
|
'use strict';
|
|
4031
3983
|
|
|
4032
3984
|
/** @type {import('./ref')} */
|
|
4033
3985
|
module.exports = ReferenceError;
|
|
4034
3986
|
|
|
4035
|
-
},{}],
|
|
3987
|
+
},{}],39:[function(_dereq_,module,exports){
|
|
4036
3988
|
'use strict';
|
|
4037
3989
|
|
|
4038
3990
|
/** @type {import('./syntax')} */
|
|
4039
3991
|
module.exports = SyntaxError;
|
|
4040
3992
|
|
|
4041
|
-
},{}],
|
|
3993
|
+
},{}],40:[function(_dereq_,module,exports){
|
|
4042
3994
|
'use strict';
|
|
4043
3995
|
|
|
4044
3996
|
/** @type {import('./type')} */
|
|
4045
3997
|
module.exports = TypeError;
|
|
4046
3998
|
|
|
4047
|
-
},{}],
|
|
3999
|
+
},{}],41:[function(_dereq_,module,exports){
|
|
4048
4000
|
'use strict';
|
|
4049
4001
|
|
|
4050
4002
|
/** @type {import('./uri')} */
|
|
4051
4003
|
module.exports = URIError;
|
|
4052
4004
|
|
|
4053
|
-
},{}],
|
|
4005
|
+
},{}],42:[function(_dereq_,module,exports){
|
|
4054
4006
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
4055
4007
|
//
|
|
4056
4008
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -4549,7 +4501,7 @@ function eventTargetAgnosticAddListener(emitter, name, listener, flags) {
|
|
|
4549
4501
|
}
|
|
4550
4502
|
}
|
|
4551
4503
|
|
|
4552
|
-
},{}],
|
|
4504
|
+
},{}],43:[function(_dereq_,module,exports){
|
|
4553
4505
|
module.exports = stringify
|
|
4554
4506
|
stringify.default = stringify
|
|
4555
4507
|
stringify.stable = deterministicStringify
|
|
@@ -4780,7 +4732,7 @@ function replaceGetterValues (replacer) {
|
|
|
4780
4732
|
}
|
|
4781
4733
|
}
|
|
4782
4734
|
|
|
4783
|
-
},{}],
|
|
4735
|
+
},{}],44:[function(_dereq_,module,exports){
|
|
4784
4736
|
/**
|
|
4785
4737
|
* filesize
|
|
4786
4738
|
*
|
|
@@ -5019,7 +4971,7 @@ function partial ({
|
|
|
5019
4971
|
exports.filesize = filesize;
|
|
5020
4972
|
exports.partial = partial;
|
|
5021
4973
|
|
|
5022
|
-
},{}],
|
|
4974
|
+
},{}],45:[function(_dereq_,module,exports){
|
|
5023
4975
|
function format(fmt) {
|
|
5024
4976
|
var re = /(%?)(%([jds]))/g
|
|
5025
4977
|
, args = Array.prototype.slice.call(arguments, 1);
|
|
@@ -5058,7 +5010,7 @@ function format(fmt) {
|
|
|
5058
5010
|
|
|
5059
5011
|
module.exports = format;
|
|
5060
5012
|
|
|
5061
|
-
},{}],
|
|
5013
|
+
},{}],46:[function(_dereq_,module,exports){
|
|
5062
5014
|
'use strict';
|
|
5063
5015
|
|
|
5064
5016
|
/* eslint no-invalid-this: 1 */
|
|
@@ -5144,14 +5096,14 @@ module.exports = function bind(that) {
|
|
|
5144
5096
|
return bound;
|
|
5145
5097
|
};
|
|
5146
5098
|
|
|
5147
|
-
},{}],
|
|
5099
|
+
},{}],47:[function(_dereq_,module,exports){
|
|
5148
5100
|
'use strict';
|
|
5149
5101
|
|
|
5150
5102
|
var implementation = _dereq_('./implementation');
|
|
5151
5103
|
|
|
5152
5104
|
module.exports = Function.prototype.bind || implementation;
|
|
5153
5105
|
|
|
5154
|
-
},{"./implementation":
|
|
5106
|
+
},{"./implementation":46}],48:[function(_dereq_,module,exports){
|
|
5155
5107
|
"use strict";
|
|
5156
5108
|
|
|
5157
5109
|
exports.__esModule = true;
|
|
@@ -5358,7 +5310,7 @@ function getFormElementValue(element, trim) {
|
|
|
5358
5310
|
|
|
5359
5311
|
|
|
5360
5312
|
getFormData.getFieldData = getFieldData;
|
|
5361
|
-
},{}],
|
|
5313
|
+
},{}],49:[function(_dereq_,module,exports){
|
|
5362
5314
|
'use strict';
|
|
5363
5315
|
|
|
5364
5316
|
var undefined;
|
|
@@ -5719,7 +5671,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
5719
5671
|
return value;
|
|
5720
5672
|
};
|
|
5721
5673
|
|
|
5722
|
-
},{"es-errors":
|
|
5674
|
+
},{"es-errors":36,"es-errors/eval":35,"es-errors/range":37,"es-errors/ref":38,"es-errors/syntax":39,"es-errors/type":40,"es-errors/uri":41,"function-bind":47,"has-proto":55,"has-symbols":56,"hasown":58}],50:[function(_dereq_,module,exports){
|
|
5723
5675
|
module.exports = Event
|
|
5724
5676
|
|
|
5725
5677
|
function Event() {
|
|
@@ -5747,7 +5699,7 @@ function Event() {
|
|
|
5747
5699
|
}
|
|
5748
5700
|
}
|
|
5749
5701
|
|
|
5750
|
-
},{}],
|
|
5702
|
+
},{}],51:[function(_dereq_,module,exports){
|
|
5751
5703
|
var Event = _dereq_('./event.js')
|
|
5752
5704
|
|
|
5753
5705
|
module.exports = Source
|
|
@@ -5760,7 +5712,7 @@ function Source(broadcaster) {
|
|
|
5760
5712
|
return tuple.listen
|
|
5761
5713
|
}
|
|
5762
5714
|
|
|
5763
|
-
},{"./event.js":
|
|
5715
|
+
},{"./event.js":50}],52:[function(_dereq_,module,exports){
|
|
5764
5716
|
(function (global){(function (){
|
|
5765
5717
|
var win;
|
|
5766
5718
|
|
|
@@ -5777,7 +5729,7 @@ if (typeof window !== "undefined") {
|
|
|
5777
5729
|
module.exports = win;
|
|
5778
5730
|
|
|
5779
5731
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
5780
|
-
},{}],
|
|
5732
|
+
},{}],53:[function(_dereq_,module,exports){
|
|
5781
5733
|
'use strict';
|
|
5782
5734
|
|
|
5783
5735
|
var GetIntrinsic = _dereq_('get-intrinsic');
|
|
@@ -5795,7 +5747,7 @@ if ($gOPD) {
|
|
|
5795
5747
|
|
|
5796
5748
|
module.exports = $gOPD;
|
|
5797
5749
|
|
|
5798
|
-
},{"get-intrinsic":
|
|
5750
|
+
},{"get-intrinsic":49}],54:[function(_dereq_,module,exports){
|
|
5799
5751
|
'use strict';
|
|
5800
5752
|
|
|
5801
5753
|
var $defineProperty = _dereq_('es-define-property');
|
|
@@ -5819,7 +5771,7 @@ hasPropertyDescriptors.hasArrayLengthDefineBug = function hasArrayLengthDefineBu
|
|
|
5819
5771
|
|
|
5820
5772
|
module.exports = hasPropertyDescriptors;
|
|
5821
5773
|
|
|
5822
|
-
},{"es-define-property":
|
|
5774
|
+
},{"es-define-property":34}],55:[function(_dereq_,module,exports){
|
|
5823
5775
|
'use strict';
|
|
5824
5776
|
|
|
5825
5777
|
var test = {
|
|
@@ -5836,7 +5788,7 @@ module.exports = function hasProto() {
|
|
|
5836
5788
|
&& !(test instanceof $Object);
|
|
5837
5789
|
};
|
|
5838
5790
|
|
|
5839
|
-
},{}],
|
|
5791
|
+
},{}],56:[function(_dereq_,module,exports){
|
|
5840
5792
|
'use strict';
|
|
5841
5793
|
|
|
5842
5794
|
var origSymbol = typeof Symbol !== 'undefined' && Symbol;
|
|
@@ -5851,7 +5803,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
5851
5803
|
return hasSymbolSham();
|
|
5852
5804
|
};
|
|
5853
5805
|
|
|
5854
|
-
},{"./shams":
|
|
5806
|
+
},{"./shams":57}],57:[function(_dereq_,module,exports){
|
|
5855
5807
|
'use strict';
|
|
5856
5808
|
|
|
5857
5809
|
/* eslint complexity: [2, 18], max-statements: [2, 33] */
|
|
@@ -5895,7 +5847,7 @@ module.exports = function hasSymbols() {
|
|
|
5895
5847
|
return true;
|
|
5896
5848
|
};
|
|
5897
5849
|
|
|
5898
|
-
},{}],
|
|
5850
|
+
},{}],58:[function(_dereq_,module,exports){
|
|
5899
5851
|
'use strict';
|
|
5900
5852
|
|
|
5901
5853
|
var call = Function.prototype.call;
|
|
@@ -5905,7 +5857,7 @@ var bind = _dereq_('function-bind');
|
|
|
5905
5857
|
/** @type {import('.')} */
|
|
5906
5858
|
module.exports = bind.call(call, $hasOwn);
|
|
5907
5859
|
|
|
5908
|
-
},{"function-bind":
|
|
5860
|
+
},{"function-bind":47}],59:[function(_dereq_,module,exports){
|
|
5909
5861
|
module.exports = shim
|
|
5910
5862
|
|
|
5911
5863
|
function shim (element, value) {
|
|
@@ -5916,7 +5868,7 @@ function shim (element, value) {
|
|
|
5916
5868
|
element.style.display = value ? 'none' : ''
|
|
5917
5869
|
}
|
|
5918
5870
|
|
|
5919
|
-
},{}],
|
|
5871
|
+
},{}],60:[function(_dereq_,module,exports){
|
|
5920
5872
|
// HumanizeDuration.js - https://git.io/j0HgmQ
|
|
5921
5873
|
|
|
5922
5874
|
// @ts-check
|
|
@@ -7878,7 +7830,7 @@ function shim (element, value) {
|
|
|
7878
7830
|
}
|
|
7879
7831
|
})();
|
|
7880
7832
|
|
|
7881
|
-
},{}],
|
|
7833
|
+
},{}],61:[function(_dereq_,module,exports){
|
|
7882
7834
|
var split = _dereq_('browser-split')
|
|
7883
7835
|
var ClassList = _dereq_('class-list')
|
|
7884
7836
|
|
|
@@ -8040,7 +7992,7 @@ function isArray (arr) {
|
|
|
8040
7992
|
|
|
8041
7993
|
|
|
8042
7994
|
|
|
8043
|
-
},{"browser-split":
|
|
7995
|
+
},{"browser-split":14,"class-list":19,"html-element":13}],62:[function(_dereq_,module,exports){
|
|
8044
7996
|
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
8045
7997
|
exports.read = function (buffer, offset, isLE, mLen, nBytes) {
|
|
8046
7998
|
var e, m
|
|
@@ -8127,7 +8079,7 @@ exports.write = function (buffer, value, offset, isLE, mLen, nBytes) {
|
|
|
8127
8079
|
buffer[offset + i - d] |= s * 128
|
|
8128
8080
|
}
|
|
8129
8081
|
|
|
8130
|
-
},{}],
|
|
8082
|
+
},{}],63:[function(_dereq_,module,exports){
|
|
8131
8083
|
|
|
8132
8084
|
var indexOf = [].indexOf;
|
|
8133
8085
|
|
|
@@ -8138,7 +8090,7 @@ module.exports = function(arr, obj){
|
|
|
8138
8090
|
}
|
|
8139
8091
|
return -1;
|
|
8140
8092
|
};
|
|
8141
|
-
},{}],
|
|
8093
|
+
},{}],64:[function(_dereq_,module,exports){
|
|
8142
8094
|
if (typeof Object.create === 'function') {
|
|
8143
8095
|
// implementation from standard node.js 'util' module
|
|
8144
8096
|
module.exports = function inherits(ctor, superCtor) {
|
|
@@ -8167,7 +8119,7 @@ if (typeof Object.create === 'function') {
|
|
|
8167
8119
|
}
|
|
8168
8120
|
}
|
|
8169
8121
|
|
|
8170
|
-
},{}],
|
|
8122
|
+
},{}],65:[function(_dereq_,module,exports){
|
|
8171
8123
|
var containers = []; // will store container HTMLElement references
|
|
8172
8124
|
var styleElements = []; // will store {prepend: HTMLElement, append: HTMLElement}
|
|
8173
8125
|
|
|
@@ -8227,7 +8179,7 @@ function createStyleElement() {
|
|
|
8227
8179
|
module.exports = insertCss;
|
|
8228
8180
|
module.exports.insertCss = insertCss;
|
|
8229
8181
|
|
|
8230
|
-
},{}],
|
|
8182
|
+
},{}],66:[function(_dereq_,module,exports){
|
|
8231
8183
|
/*! npm.im/intervalometer */
|
|
8232
8184
|
'use strict';
|
|
8233
8185
|
|
|
@@ -8271,7 +8223,7 @@ function timerIntervalometer(cb, delay) {
|
|
|
8271
8223
|
exports.intervalometer = intervalometer;
|
|
8272
8224
|
exports.frameIntervalometer = frameIntervalometer;
|
|
8273
8225
|
exports.timerIntervalometer = timerIntervalometer;
|
|
8274
|
-
},{}],
|
|
8226
|
+
},{}],67:[function(_dereq_,module,exports){
|
|
8275
8227
|
/*! npm.im/iphone-inline-video 2.2.2 */
|
|
8276
8228
|
'use strict';
|
|
8277
8229
|
|
|
@@ -8639,27 +8591,27 @@ function enableInlineVideo(video, opts) {
|
|
|
8639
8591
|
|
|
8640
8592
|
module.exports = enableInlineVideo;
|
|
8641
8593
|
|
|
8642
|
-
},{"intervalometer":
|
|
8594
|
+
},{"intervalometer":66}],68:[function(_dereq_,module,exports){
|
|
8643
8595
|
'use strict';
|
|
8644
8596
|
|
|
8645
8597
|
module.exports = Number.isFinite || function (value) {
|
|
8646
8598
|
return !(typeof value !== 'number' || value !== value || value === Infinity || value === -Infinity);
|
|
8647
8599
|
};
|
|
8648
8600
|
|
|
8649
|
-
},{}],
|
|
8601
|
+
},{}],69:[function(_dereq_,module,exports){
|
|
8650
8602
|
module.exports = isPowerOfTwo
|
|
8651
8603
|
|
|
8652
8604
|
function isPowerOfTwo(n) {
|
|
8653
8605
|
return n !== 0 && (n & (n - 1)) === 0
|
|
8654
8606
|
}
|
|
8655
|
-
},{}],
|
|
8607
|
+
},{}],70:[function(_dereq_,module,exports){
|
|
8656
8608
|
var toString = {}.toString;
|
|
8657
8609
|
|
|
8658
8610
|
module.exports = Array.isArray || function (arr) {
|
|
8659
8611
|
return toString.call(arr) == '[object Array]';
|
|
8660
8612
|
};
|
|
8661
8613
|
|
|
8662
|
-
},{}],
|
|
8614
|
+
},{}],71:[function(_dereq_,module,exports){
|
|
8663
8615
|
/**
|
|
8664
8616
|
* Copyright 2013-2014 Facebook, Inc.
|
|
8665
8617
|
*
|
|
@@ -8714,7 +8666,7 @@ var keyMirror = function(obj) {
|
|
|
8714
8666
|
|
|
8715
8667
|
module.exports = keyMirror;
|
|
8716
8668
|
|
|
8717
|
-
},{}],
|
|
8669
|
+
},{}],72:[function(_dereq_,module,exports){
|
|
8718
8670
|
'use strict';
|
|
8719
8671
|
var numberIsFinite = _dereq_('is-finite');
|
|
8720
8672
|
|
|
@@ -8722,7 +8674,7 @@ module.exports = Number.isInteger || function (x) {
|
|
|
8722
8674
|
return numberIsFinite(x) && Math.floor(x) === x;
|
|
8723
8675
|
};
|
|
8724
8676
|
|
|
8725
|
-
},{"is-finite":
|
|
8677
|
+
},{"is-finite":68}],73:[function(_dereq_,module,exports){
|
|
8726
8678
|
(function (global){(function (){
|
|
8727
8679
|
var hasMap = typeof Map === 'function' && Map.prototype;
|
|
8728
8680
|
var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
|
|
@@ -9253,7 +9205,7 @@ function arrObjKeys(obj, inspect) {
|
|
|
9253
9205
|
}
|
|
9254
9206
|
|
|
9255
9207
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
9256
|
-
},{"./util.inspect":
|
|
9208
|
+
},{"./util.inspect":13}],74:[function(_dereq_,module,exports){
|
|
9257
9209
|
var wrappy = _dereq_('wrappy')
|
|
9258
9210
|
module.exports = wrappy(once)
|
|
9259
9211
|
module.exports.strict = wrappy(onceStrict)
|
|
@@ -9297,7 +9249,7 @@ function onceStrict (fn) {
|
|
|
9297
9249
|
return f
|
|
9298
9250
|
}
|
|
9299
9251
|
|
|
9300
|
-
},{"wrappy":
|
|
9252
|
+
},{"wrappy":115}],75:[function(_dereq_,module,exports){
|
|
9301
9253
|
(function (process){(function (){
|
|
9302
9254
|
// Generated by CoffeeScript 1.12.2
|
|
9303
9255
|
(function() {
|
|
@@ -9337,7 +9289,7 @@ function onceStrict (fn) {
|
|
|
9337
9289
|
|
|
9338
9290
|
|
|
9339
9291
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
9340
|
-
},{"_process":
|
|
9292
|
+
},{"_process":77}],76:[function(_dereq_,module,exports){
|
|
9341
9293
|
(function (process){(function (){
|
|
9342
9294
|
'use strict';
|
|
9343
9295
|
|
|
@@ -9386,7 +9338,7 @@ function nextTick(fn, arg1, arg2, arg3) {
|
|
|
9386
9338
|
|
|
9387
9339
|
|
|
9388
9340
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
9389
|
-
},{"_process":
|
|
9341
|
+
},{"_process":77}],77:[function(_dereq_,module,exports){
|
|
9390
9342
|
// shim for using process in browser
|
|
9391
9343
|
var process = module.exports = {};
|
|
9392
9344
|
|
|
@@ -9572,7 +9524,7 @@ process.chdir = function (dir) {
|
|
|
9572
9524
|
};
|
|
9573
9525
|
process.umask = function() { return 0; };
|
|
9574
9526
|
|
|
9575
|
-
},{}],
|
|
9527
|
+
},{}],78:[function(_dereq_,module,exports){
|
|
9576
9528
|
'use strict';
|
|
9577
9529
|
|
|
9578
9530
|
var replace = String.prototype.replace;
|
|
@@ -9597,7 +9549,7 @@ module.exports = {
|
|
|
9597
9549
|
RFC3986: Format.RFC3986
|
|
9598
9550
|
};
|
|
9599
9551
|
|
|
9600
|
-
},{}],
|
|
9552
|
+
},{}],79:[function(_dereq_,module,exports){
|
|
9601
9553
|
'use strict';
|
|
9602
9554
|
|
|
9603
9555
|
var stringify = _dereq_('./stringify');
|
|
@@ -9610,7 +9562,7 @@ module.exports = {
|
|
|
9610
9562
|
stringify: stringify
|
|
9611
9563
|
};
|
|
9612
9564
|
|
|
9613
|
-
},{"./formats":
|
|
9565
|
+
},{"./formats":78,"./parse":80,"./stringify":81}],80:[function(_dereq_,module,exports){
|
|
9614
9566
|
'use strict';
|
|
9615
9567
|
|
|
9616
9568
|
var utils = _dereq_('./utils');
|
|
@@ -9875,7 +9827,7 @@ module.exports = function (str, opts) {
|
|
|
9875
9827
|
return utils.compact(obj);
|
|
9876
9828
|
};
|
|
9877
9829
|
|
|
9878
|
-
},{"./utils":
|
|
9830
|
+
},{"./utils":82}],81:[function(_dereq_,module,exports){
|
|
9879
9831
|
'use strict';
|
|
9880
9832
|
|
|
9881
9833
|
var getSideChannel = _dereq_('side-channel');
|
|
@@ -10203,7 +10155,7 @@ module.exports = function (object, opts) {
|
|
|
10203
10155
|
return joined.length > 0 ? prefix + joined : '';
|
|
10204
10156
|
};
|
|
10205
10157
|
|
|
10206
|
-
},{"./formats":
|
|
10158
|
+
},{"./formats":78,"./utils":82,"side-channel":101}],82:[function(_dereq_,module,exports){
|
|
10207
10159
|
'use strict';
|
|
10208
10160
|
|
|
10209
10161
|
var formats = _dereq_('./formats');
|
|
@@ -10457,7 +10409,7 @@ module.exports = {
|
|
|
10457
10409
|
merge: merge
|
|
10458
10410
|
};
|
|
10459
10411
|
|
|
10460
|
-
},{"./formats":
|
|
10412
|
+
},{"./formats":78}],83:[function(_dereq_,module,exports){
|
|
10461
10413
|
(function (global){(function (){
|
|
10462
10414
|
var now = _dereq_('performance-now')
|
|
10463
10415
|
, root = typeof window === 'undefined' ? global : window
|
|
@@ -10536,7 +10488,7 @@ module.exports.polyfill = function(object) {
|
|
|
10536
10488
|
}
|
|
10537
10489
|
|
|
10538
10490
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
10539
|
-
},{"performance-now":
|
|
10491
|
+
},{"performance-now":75}],84:[function(_dereq_,module,exports){
|
|
10540
10492
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
10541
10493
|
//
|
|
10542
10494
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -10668,7 +10620,7 @@ Duplex.prototype._destroy = function (err, cb) {
|
|
|
10668
10620
|
|
|
10669
10621
|
pna.nextTick(cb, err);
|
|
10670
10622
|
};
|
|
10671
|
-
},{"./_stream_readable":
|
|
10623
|
+
},{"./_stream_readable":86,"./_stream_writable":88,"core-util-is":23,"inherits":64,"process-nextick-args":76}],85:[function(_dereq_,module,exports){
|
|
10672
10624
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
10673
10625
|
//
|
|
10674
10626
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -10716,7 +10668,7 @@ function PassThrough(options) {
|
|
|
10716
10668
|
PassThrough.prototype._transform = function (chunk, encoding, cb) {
|
|
10717
10669
|
cb(null, chunk);
|
|
10718
10670
|
};
|
|
10719
|
-
},{"./_stream_transform":
|
|
10671
|
+
},{"./_stream_transform":87,"core-util-is":23,"inherits":64}],86:[function(_dereq_,module,exports){
|
|
10720
10672
|
(function (process,global){(function (){
|
|
10721
10673
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
10722
10674
|
//
|
|
@@ -11738,7 +11690,7 @@ function indexOf(xs, x) {
|
|
|
11738
11690
|
return -1;
|
|
11739
11691
|
}
|
|
11740
11692
|
}).call(this)}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
11741
|
-
},{"./_stream_duplex":
|
|
11693
|
+
},{"./_stream_duplex":84,"./internal/streams/BufferList":89,"./internal/streams/destroy":90,"./internal/streams/stream":91,"_process":77,"core-util-is":23,"events":42,"inherits":64,"isarray":70,"process-nextick-args":76,"safe-buffer":92,"string_decoder/":93,"util":13}],87:[function(_dereq_,module,exports){
|
|
11742
11694
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
11743
11695
|
//
|
|
11744
11696
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -11953,7 +11905,7 @@ function done(stream, er, data) {
|
|
|
11953
11905
|
|
|
11954
11906
|
return stream.push(null);
|
|
11955
11907
|
}
|
|
11956
|
-
},{"./_stream_duplex":
|
|
11908
|
+
},{"./_stream_duplex":84,"core-util-is":23,"inherits":64}],88:[function(_dereq_,module,exports){
|
|
11957
11909
|
(function (process,global,setImmediate){(function (){
|
|
11958
11910
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
11959
11911
|
//
|
|
@@ -12641,7 +12593,7 @@ Writable.prototype._destroy = function (err, cb) {
|
|
|
12641
12593
|
cb(err);
|
|
12642
12594
|
};
|
|
12643
12595
|
}).call(this)}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {},_dereq_("timers").setImmediate)
|
|
12644
|
-
},{"./_stream_duplex":
|
|
12596
|
+
},{"./_stream_duplex":84,"./internal/streams/destroy":90,"./internal/streams/stream":91,"_process":77,"core-util-is":23,"inherits":64,"process-nextick-args":76,"safe-buffer":92,"timers":108,"util-deprecate":111}],89:[function(_dereq_,module,exports){
|
|
12645
12597
|
'use strict';
|
|
12646
12598
|
|
|
12647
12599
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
@@ -12720,7 +12672,7 @@ if (util && util.inspect && util.inspect.custom) {
|
|
|
12720
12672
|
return this.constructor.name + ' ' + obj;
|
|
12721
12673
|
};
|
|
12722
12674
|
}
|
|
12723
|
-
},{"safe-buffer":
|
|
12675
|
+
},{"safe-buffer":92,"util":13}],90:[function(_dereq_,module,exports){
|
|
12724
12676
|
'use strict';
|
|
12725
12677
|
|
|
12726
12678
|
/*<replacement>*/
|
|
@@ -12805,10 +12757,10 @@ module.exports = {
|
|
|
12805
12757
|
destroy: destroy,
|
|
12806
12758
|
undestroy: undestroy
|
|
12807
12759
|
};
|
|
12808
|
-
},{"process-nextick-args":
|
|
12760
|
+
},{"process-nextick-args":76}],91:[function(_dereq_,module,exports){
|
|
12809
12761
|
module.exports = _dereq_('events').EventEmitter;
|
|
12810
12762
|
|
|
12811
|
-
},{"events":
|
|
12763
|
+
},{"events":42}],92:[function(_dereq_,module,exports){
|
|
12812
12764
|
/* eslint-disable node/no-deprecated-api */
|
|
12813
12765
|
var buffer = _dereq_('buffer')
|
|
12814
12766
|
var Buffer = buffer.Buffer
|
|
@@ -12872,7 +12824,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
12872
12824
|
return buffer.SlowBuffer(size)
|
|
12873
12825
|
}
|
|
12874
12826
|
|
|
12875
|
-
},{"buffer":
|
|
12827
|
+
},{"buffer":15}],93:[function(_dereq_,module,exports){
|
|
12876
12828
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
12877
12829
|
//
|
|
12878
12830
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
@@ -13169,7 +13121,7 @@ function simpleWrite(buf) {
|
|
|
13169
13121
|
function simpleEnd(buf) {
|
|
13170
13122
|
return buf && buf.length ? this.write(buf) : '';
|
|
13171
13123
|
}
|
|
13172
|
-
},{"safe-buffer":
|
|
13124
|
+
},{"safe-buffer":92}],94:[function(_dereq_,module,exports){
|
|
13173
13125
|
exports = module.exports = _dereq_('./lib/_stream_readable.js');
|
|
13174
13126
|
exports.Stream = exports;
|
|
13175
13127
|
exports.Readable = exports;
|
|
@@ -13178,7 +13130,7 @@ exports.Duplex = _dereq_('./lib/_stream_duplex.js');
|
|
|
13178
13130
|
exports.Transform = _dereq_('./lib/_stream_transform.js');
|
|
13179
13131
|
exports.PassThrough = _dereq_('./lib/_stream_passthrough.js');
|
|
13180
13132
|
|
|
13181
|
-
},{"./lib/_stream_duplex.js":
|
|
13133
|
+
},{"./lib/_stream_duplex.js":84,"./lib/_stream_passthrough.js":85,"./lib/_stream_readable.js":86,"./lib/_stream_transform.js":87,"./lib/_stream_writable.js":88}],95:[function(_dereq_,module,exports){
|
|
13182
13134
|
'use strict';
|
|
13183
13135
|
|
|
13184
13136
|
var readystate = module.exports = _dereq_('./readystate')
|
|
@@ -13253,7 +13205,7 @@ var readystate = module.exports = _dereq_('./readystate')
|
|
|
13253
13205
|
win[on](prefix +'load', change, false);
|
|
13254
13206
|
} ());
|
|
13255
13207
|
|
|
13256
|
-
},{"./readystate":
|
|
13208
|
+
},{"./readystate":96}],96:[function(_dereq_,module,exports){
|
|
13257
13209
|
'use strict';
|
|
13258
13210
|
|
|
13259
13211
|
/**
|
|
@@ -13407,7 +13359,7 @@ RS.prototype.removeAllListeners = function removeAllListeners() {
|
|
|
13407
13359
|
//
|
|
13408
13360
|
module.exports = new RS();
|
|
13409
13361
|
|
|
13410
|
-
},{}],
|
|
13362
|
+
},{}],97:[function(_dereq_,module,exports){
|
|
13411
13363
|
/**
|
|
13412
13364
|
* request-frame - requestAnimationFrame & cancelAnimationFrame polyfill for optimal cross-browser development.
|
|
13413
13365
|
* @version v1.5.3
|
|
@@ -13638,7 +13590,7 @@ return requestFrame;
|
|
|
13638
13590
|
|
|
13639
13591
|
})));
|
|
13640
13592
|
|
|
13641
|
-
},{}],
|
|
13593
|
+
},{}],98:[function(_dereq_,module,exports){
|
|
13642
13594
|
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
13643
13595
|
/* eslint-disable node/no-deprecated-api */
|
|
13644
13596
|
var buffer = _dereq_('buffer')
|
|
@@ -13705,7 +13657,7 @@ SafeBuffer.allocUnsafeSlow = function (size) {
|
|
|
13705
13657
|
return buffer.SlowBuffer(size)
|
|
13706
13658
|
}
|
|
13707
13659
|
|
|
13708
|
-
},{"buffer":
|
|
13660
|
+
},{"buffer":15}],99:[function(_dereq_,module,exports){
|
|
13709
13661
|
var hasProp = Object.prototype.hasOwnProperty;
|
|
13710
13662
|
|
|
13711
13663
|
function throwsMessage(err) {
|
|
@@ -13772,7 +13724,7 @@ module.exports = function(data, replacer, space) {
|
|
|
13772
13724
|
|
|
13773
13725
|
module.exports.ensureProperties = ensureProperties;
|
|
13774
13726
|
|
|
13775
|
-
},{}],
|
|
13727
|
+
},{}],100:[function(_dereq_,module,exports){
|
|
13776
13728
|
'use strict';
|
|
13777
13729
|
|
|
13778
13730
|
var GetIntrinsic = _dereq_('get-intrinsic');
|
|
@@ -13816,7 +13768,7 @@ module.exports = function setFunctionLength(fn, length) {
|
|
|
13816
13768
|
return fn;
|
|
13817
13769
|
};
|
|
13818
13770
|
|
|
13819
|
-
},{"define-data-property":
|
|
13771
|
+
},{"define-data-property":26,"es-errors/type":40,"get-intrinsic":49,"gopd":53,"has-property-descriptors":54}],101:[function(_dereq_,module,exports){
|
|
13820
13772
|
'use strict';
|
|
13821
13773
|
|
|
13822
13774
|
var GetIntrinsic = _dereq_('get-intrinsic');
|
|
@@ -13947,7 +13899,7 @@ module.exports = function getSideChannel() {
|
|
|
13947
13899
|
return channel;
|
|
13948
13900
|
};
|
|
13949
13901
|
|
|
13950
|
-
},{"call-bind/callBound":
|
|
13902
|
+
},{"call-bind/callBound":16,"es-errors/type":40,"get-intrinsic":49,"object-inspect":73}],102:[function(_dereq_,module,exports){
|
|
13951
13903
|
module.exports = shift
|
|
13952
13904
|
|
|
13953
13905
|
function shift (stream) {
|
|
@@ -13970,7 +13922,7 @@ function getStateLength (state) {
|
|
|
13970
13922
|
return state.length
|
|
13971
13923
|
}
|
|
13972
13924
|
|
|
13973
|
-
},{}],
|
|
13925
|
+
},{}],103:[function(_dereq_,module,exports){
|
|
13974
13926
|
"use strict";
|
|
13975
13927
|
|
|
13976
13928
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
@@ -14009,7 +13961,7 @@ Agent.prototype._setDefaults = function (request) {
|
|
|
14009
13961
|
};
|
|
14010
13962
|
module.exports = Agent;
|
|
14011
13963
|
|
|
14012
|
-
},{}],
|
|
13964
|
+
},{}],104:[function(_dereq_,module,exports){
|
|
14013
13965
|
"use strict";
|
|
14014
13966
|
|
|
14015
13967
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
@@ -14954,7 +14906,7 @@ request.put = (url, data, fn) => {
|
|
|
14954
14906
|
return request_;
|
|
14955
14907
|
};
|
|
14956
14908
|
|
|
14957
|
-
},{"./agent-base":
|
|
14909
|
+
},{"./agent-base":103,"./request-base":105,"./response-base":106,"./utils":107,"component-emitter":21,"fast-safe-stringify":43,"qs":79}],105:[function(_dereq_,module,exports){
|
|
14958
14910
|
(function (process){(function (){
|
|
14959
14911
|
"use strict";
|
|
14960
14912
|
|
|
@@ -15695,7 +15647,7 @@ RequestBase.prototype._setTimeouts = function () {
|
|
|
15695
15647
|
};
|
|
15696
15648
|
|
|
15697
15649
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
15698
|
-
},{"./utils":
|
|
15650
|
+
},{"./utils":107,"_process":77,"semver":13}],106:[function(_dereq_,module,exports){
|
|
15699
15651
|
"use strict";
|
|
15700
15652
|
|
|
15701
15653
|
/**
|
|
@@ -15816,7 +15768,7 @@ ResponseBase.prototype._setStatusProperties = function (status) {
|
|
|
15816
15768
|
this.unprocessableEntity = status === 422;
|
|
15817
15769
|
};
|
|
15818
15770
|
|
|
15819
|
-
},{"./utils":
|
|
15771
|
+
},{"./utils":107}],107:[function(_dereq_,module,exports){
|
|
15820
15772
|
"use strict";
|
|
15821
15773
|
|
|
15822
15774
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
|
|
@@ -15940,7 +15892,7 @@ exports.mixin = (target, source) => {
|
|
|
15940
15892
|
}
|
|
15941
15893
|
};
|
|
15942
15894
|
|
|
15943
|
-
},{}],
|
|
15895
|
+
},{}],108:[function(_dereq_,module,exports){
|
|
15944
15896
|
(function (setImmediate,clearImmediate){(function (){
|
|
15945
15897
|
var nextTick = _dereq_('process/browser.js').nextTick;
|
|
15946
15898
|
var apply = Function.prototype.apply;
|
|
@@ -16019,7 +15971,7 @@ exports.clearImmediate = typeof clearImmediate === "function" ? clearImmediate :
|
|
|
16019
15971
|
delete immediateIds[id];
|
|
16020
15972
|
};
|
|
16021
15973
|
}).call(this)}).call(this,_dereq_("timers").setImmediate,_dereq_("timers").clearImmediate)
|
|
16022
|
-
},{"process/browser.js":
|
|
15974
|
+
},{"process/browser.js":77,"timers":108}],109:[function(_dereq_,module,exports){
|
|
16023
15975
|
(function (Buffer){(function (){
|
|
16024
15976
|
/*! typedarray-to-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
16025
15977
|
/**
|
|
@@ -16041,7 +15993,7 @@ module.exports = function typedarrayToBuffer (arr) {
|
|
|
16041
15993
|
}
|
|
16042
15994
|
|
|
16043
15995
|
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
16044
|
-
},{"buffer":
|
|
15996
|
+
},{"buffer":15}],110:[function(_dereq_,module,exports){
|
|
16045
15997
|
/////////////////////////////////////////////////////////////////////////////////
|
|
16046
15998
|
/* UAParser.js v1.0.38
|
|
16047
15999
|
Copyright © 2012-2021 Faisal Salman <f@faisalman.com>
|
|
@@ -16996,7 +16948,7 @@ module.exports = function typedarrayToBuffer (arr) {
|
|
|
16996
16948
|
|
|
16997
16949
|
})(typeof window === 'object' ? window : this);
|
|
16998
16950
|
|
|
16999
|
-
},{}],
|
|
16951
|
+
},{}],111:[function(_dereq_,module,exports){
|
|
17000
16952
|
(function (global){(function (){
|
|
17001
16953
|
|
|
17002
16954
|
/**
|
|
@@ -17067,33 +17019,7 @@ function config (name) {
|
|
|
17067
17019
|
}
|
|
17068
17020
|
|
|
17069
17021
|
}).call(this)}).call(this,typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
17070
|
-
},{}],
|
|
17071
|
-
'use strict';
|
|
17072
|
-
|
|
17073
|
-
// FUNCTIONS //
|
|
17074
|
-
|
|
17075
|
-
var isStr = Object.prototype.toString;
|
|
17076
|
-
|
|
17077
|
-
|
|
17078
|
-
// IS FLOAT32ARRAY //
|
|
17079
|
-
|
|
17080
|
-
/**
|
|
17081
|
-
* FUNCTION: isFloat32Array( value )
|
|
17082
|
-
* Validates if a value is a Float32Array.
|
|
17083
|
-
*
|
|
17084
|
-
* @param {*} value - value to validate
|
|
17085
|
-
* @returns {Boolean} boolean indicating if a value is a Float32Array
|
|
17086
|
-
*/
|
|
17087
|
-
function isFloat32Array( value ) {
|
|
17088
|
-
return isStr.call( value ) === '[object Float32Array]';
|
|
17089
|
-
} // end FUNCTION isFloat32Array()
|
|
17090
|
-
|
|
17091
|
-
|
|
17092
|
-
// EXPORTS //
|
|
17093
|
-
|
|
17094
|
-
module.exports = isFloat32Array;
|
|
17095
|
-
|
|
17096
|
-
},{}],114:[function(_dereq_,module,exports){
|
|
17022
|
+
},{}],112:[function(_dereq_,module,exports){
|
|
17097
17023
|
(function (process,Buffer){(function (){
|
|
17098
17024
|
var stream = _dereq_('readable-stream')
|
|
17099
17025
|
var eos = _dereq_('end-of-stream')
|
|
@@ -17331,7 +17257,7 @@ Duplexify.prototype.end = function(data, enc, cb) {
|
|
|
17331
17257
|
module.exports = Duplexify
|
|
17332
17258
|
|
|
17333
17259
|
}).call(this)}).call(this,_dereq_('_process'),_dereq_("buffer").Buffer)
|
|
17334
|
-
},{"_process":
|
|
17260
|
+
},{"_process":77,"buffer":15,"end-of-stream":33,"inherits":64,"readable-stream":94,"stream-shift":102}],113:[function(_dereq_,module,exports){
|
|
17335
17261
|
(function (process,global){(function (){
|
|
17336
17262
|
'use strict'
|
|
17337
17263
|
|
|
@@ -17524,7 +17450,7 @@ function WebSocketStream(target, protocols, options) {
|
|
|
17524
17450
|
}
|
|
17525
17451
|
|
|
17526
17452
|
}).call(this)}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
17527
|
-
},{"_process":
|
|
17453
|
+
},{"_process":77,"duplexify":112,"readable-stream":94,"safe-buffer":98,"ws":114}],114:[function(_dereq_,module,exports){
|
|
17528
17454
|
|
|
17529
17455
|
var ws = null
|
|
17530
17456
|
|
|
@@ -17538,7 +17464,7 @@ if (typeof WebSocket !== 'undefined') {
|
|
|
17538
17464
|
|
|
17539
17465
|
module.exports = ws
|
|
17540
17466
|
|
|
17541
|
-
},{}],
|
|
17467
|
+
},{}],115:[function(_dereq_,module,exports){
|
|
17542
17468
|
// Returns a wrapper function that returns a wrapped callback
|
|
17543
17469
|
// The wrapper function should do some stuff, and return a
|
|
17544
17470
|
// presumably different callback function.
|
|
@@ -17573,10 +17499,10 @@ function wrappy (fn, cb) {
|
|
|
17573
17499
|
}
|
|
17574
17500
|
}
|
|
17575
17501
|
|
|
17576
|
-
},{}],
|
|
17502
|
+
},{}],116:[function(_dereq_,module,exports){
|
|
17577
17503
|
module.exports={
|
|
17578
17504
|
"name": "videomail-client",
|
|
17579
|
-
"version": "8.2.
|
|
17505
|
+
"version": "8.2.2",
|
|
17580
17506
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
17581
17507
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
17582
17508
|
"contributors": [
|
|
@@ -17626,11 +17552,11 @@ module.exports={
|
|
|
17626
17552
|
"@babel/core": "7.25.2",
|
|
17627
17553
|
"add-eventlistener-with-options": "1.25.5",
|
|
17628
17554
|
"animitter": "3.0.0",
|
|
17629
|
-
"audio-sample": "
|
|
17630
|
-
"canvas-to-buffer": "
|
|
17555
|
+
"audio-sample": "4.0.1",
|
|
17556
|
+
"canvas-to-buffer": "4.0.1",
|
|
17631
17557
|
"classlist.js": "1.1.20150312",
|
|
17632
17558
|
"contains": "0.1.1",
|
|
17633
|
-
"core-js": "3.
|
|
17559
|
+
"core-js": "3.38.0",
|
|
17634
17560
|
"create-error": "0.3.1",
|
|
17635
17561
|
"deepmerge": "4.3.1",
|
|
17636
17562
|
"defined": "1.0.1",
|
|
@@ -17660,7 +17586,7 @@ module.exports={
|
|
|
17660
17586
|
"@babel/eslint-parser": "7.25.1",
|
|
17661
17587
|
"@babel/plugin-transform-runtime": "7.24.7",
|
|
17662
17588
|
"@babel/preset-env": "7.25.3",
|
|
17663
|
-
"audit-ci": "
|
|
17589
|
+
"audit-ci": "7.1.0",
|
|
17664
17590
|
"autoprefixer": "10.4.20",
|
|
17665
17591
|
"babelify": "10.0.0",
|
|
17666
17592
|
"body-parser": "1.20.2",
|
|
@@ -17690,7 +17616,6 @@ module.exports={
|
|
|
17690
17616
|
"gulp-sourcemaps": "3.0.0",
|
|
17691
17617
|
"gulp-stylus": "3.0.1",
|
|
17692
17618
|
"gulp-terser": "2.1.0",
|
|
17693
|
-
"gulp-todo": "7.1.1",
|
|
17694
17619
|
"minimist": "1.2.8",
|
|
17695
17620
|
"nib": "1.2.0",
|
|
17696
17621
|
"postcss": "8.4.40",
|
|
@@ -17705,7 +17630,7 @@ module.exports={
|
|
|
17705
17630
|
}
|
|
17706
17631
|
}
|
|
17707
17632
|
|
|
17708
|
-
},{}],
|
|
17633
|
+
},{}],117:[function(_dereq_,module,exports){
|
|
17709
17634
|
"use strict";
|
|
17710
17635
|
|
|
17711
17636
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -17882,7 +17807,7 @@ Object.keys(_constants.default.public).forEach(function (name) {
|
|
|
17882
17807
|
VideomailClient.events = _events.default;
|
|
17883
17808
|
var _default = exports.default = VideomailClient;
|
|
17884
17809
|
|
|
17885
|
-
},{"./constants":
|
|
17810
|
+
},{"./constants":118,"./events":119,"./options":120,"./resource":121,"./util/browser":123,"./util/collectLogger":124,"./util/eventEmitter":125,"./wrappers/container":132,"./wrappers/optionsWrapper":135,"./wrappers/visuals/replay":145,"@babel/runtime/helpers/interopRequireDefault":3,"deepmerge":25,"inherits":64,"readystate":95}],118:[function(_dereq_,module,exports){
|
|
17886
17811
|
"use strict";
|
|
17887
17812
|
|
|
17888
17813
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -17899,7 +17824,7 @@ var _default = exports.default = {
|
|
|
17899
17824
|
}
|
|
17900
17825
|
};
|
|
17901
17826
|
|
|
17902
|
-
},{}],
|
|
17827
|
+
},{}],119:[function(_dereq_,module,exports){
|
|
17903
17828
|
"use strict";
|
|
17904
17829
|
|
|
17905
17830
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -17994,7 +17919,7 @@ var _default = exports.default = (0, _keymirror.default)({
|
|
|
17994
17919
|
SERVER_READY: null // Gets emitted when the ready command is sent through sockets from the server for recording
|
|
17995
17920
|
});
|
|
17996
17921
|
|
|
17997
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"keymirror":
|
|
17922
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"keymirror":71}],120:[function(_dereq_,module,exports){
|
|
17998
17923
|
(function (process){(function (){
|
|
17999
17924
|
"use strict";
|
|
18000
17925
|
|
|
@@ -18208,7 +18133,7 @@ var _default = exports.default = {
|
|
|
18208
18133
|
};
|
|
18209
18134
|
|
|
18210
18135
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
18211
|
-
},{"../../package.json":
|
|
18136
|
+
},{"../../package.json":116,"_process":77}],121:[function(_dereq_,module,exports){
|
|
18212
18137
|
"use strict";
|
|
18213
18138
|
|
|
18214
18139
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18363,7 +18288,7 @@ function _default(options) {
|
|
|
18363
18288
|
};
|
|
18364
18289
|
}
|
|
18365
18290
|
|
|
18366
|
-
},{"./constants":
|
|
18291
|
+
},{"./constants":118,"@babel/runtime/helpers/interopRequireDefault":3,"superagent":104}],122:[function(_dereq_,module,exports){
|
|
18367
18292
|
"use strict";
|
|
18368
18293
|
|
|
18369
18294
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18496,7 +18421,7 @@ function _default(userMedia, options) {
|
|
|
18496
18421
|
};
|
|
18497
18422
|
}
|
|
18498
18423
|
|
|
18499
|
-
},{"./browser":
|
|
18424
|
+
},{"./browser":123,"./videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"audio-sample":11,"is-power-of-two":69}],123:[function(_dereq_,module,exports){
|
|
18500
18425
|
"use strict";
|
|
18501
18426
|
|
|
18502
18427
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18730,7 +18655,7 @@ var Browser = function Browser(options) {
|
|
|
18730
18655
|
};
|
|
18731
18656
|
var _default = exports.default = Browser;
|
|
18732
18657
|
|
|
18733
|
-
},{"./videomailError":
|
|
18658
|
+
},{"./videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"defined":27,"ua-parser-js":110}],124:[function(_dereq_,module,exports){
|
|
18734
18659
|
"use strict";
|
|
18735
18660
|
|
|
18736
18661
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18798,7 +18723,7 @@ function _default() {
|
|
|
18798
18723
|
};
|
|
18799
18724
|
}
|
|
18800
18725
|
|
|
18801
|
-
},{"./browser":
|
|
18726
|
+
},{"./browser":123,"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/toConsumableArray":6,"format-util":45}],125:[function(_dereq_,module,exports){
|
|
18802
18727
|
"use strict";
|
|
18803
18728
|
|
|
18804
18729
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18865,7 +18790,7 @@ function _default(options, name) {
|
|
|
18865
18790
|
};
|
|
18866
18791
|
}
|
|
18867
18792
|
|
|
18868
|
-
},{"./../events":
|
|
18793
|
+
},{"./../events":119,"./videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"despot":28,"safe-json-stringify":99}],126:[function(_dereq_,module,exports){
|
|
18869
18794
|
"use strict";
|
|
18870
18795
|
|
|
18871
18796
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18887,7 +18812,7 @@ var _default = exports.default = {
|
|
|
18887
18812
|
}
|
|
18888
18813
|
};
|
|
18889
18814
|
|
|
18890
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"filesize":
|
|
18815
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"filesize":44,"humanize-duration":60}],127:[function(_dereq_,module,exports){
|
|
18891
18816
|
"use strict";
|
|
18892
18817
|
|
|
18893
18818
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -19024,7 +18949,7 @@ var _default = exports.default = [
|
|
|
19024
18949
|
* 'timeupdate'
|
|
19025
18950
|
*/];
|
|
19026
18951
|
|
|
19027
|
-
},{}],
|
|
18952
|
+
},{}],128:[function(_dereq_,module,exports){
|
|
19028
18953
|
"use strict";
|
|
19029
18954
|
|
|
19030
18955
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -19092,7 +19017,7 @@ function _default(anything, options) {
|
|
|
19092
19017
|
return anything.toString();
|
|
19093
19018
|
}
|
|
19094
19019
|
|
|
19095
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"safe-json-stringify":
|
|
19020
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"safe-json-stringify":99}],129:[function(_dereq_,module,exports){
|
|
19096
19021
|
"use strict";
|
|
19097
19022
|
|
|
19098
19023
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -19149,7 +19074,7 @@ function _default() {
|
|
|
19149
19074
|
}
|
|
19150
19075
|
}
|
|
19151
19076
|
|
|
19152
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"classlist.js":
|
|
19077
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"classlist.js":20,"request-frame":97}],130:[function(_dereq_,module,exports){
|
|
19153
19078
|
"use strict";
|
|
19154
19079
|
|
|
19155
19080
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -19526,7 +19451,7 @@ VideomailError.create = function (err, explanation, options, parameters) {
|
|
|
19526
19451
|
};
|
|
19527
19452
|
var _default = exports.default = VideomailError;
|
|
19528
19453
|
|
|
19529
|
-
},{"./../resource":
|
|
19454
|
+
},{"./../resource":121,"./browser":123,"./pretty":128,"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"create-error":24,"safe-json-stringify":99}],131:[function(_dereq_,module,exports){
|
|
19530
19455
|
"use strict";
|
|
19531
19456
|
|
|
19532
19457
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -20026,7 +19951,7 @@ var Buttons = function Buttons(container, options) {
|
|
|
20026
19951
|
(0, _inherits.default)(Buttons, _eventEmitter.default);
|
|
20027
19952
|
var _default = exports.default = Buttons;
|
|
20028
19953
|
|
|
20029
|
-
},{"../events":
|
|
19954
|
+
},{"../events":119,"../util/eventEmitter":125,"@babel/runtime/helpers/interopRequireDefault":3,"contains":22,"hidden":59,"hyperscript":61,"inherits":64}],132:[function(_dereq_,module,exports){
|
|
20030
19955
|
"use strict";
|
|
20031
19956
|
|
|
20032
19957
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -20684,7 +20609,7 @@ var Container = function Container(options) {
|
|
|
20684
20609
|
(0, _inherits.default)(Container, _eventEmitter.default);
|
|
20685
20610
|
var _default = exports.default = Container;
|
|
20686
20611
|
|
|
20687
|
-
},{"../../styles/css/main.min.css.js":
|
|
20612
|
+
},{"../../styles/css/main.min.css.js":147,"../events":119,"../resource":121,"../util/eventEmitter":125,"../util/videomailError":130,"./buttons":131,"./dimension":133,"./form":134,"./optionsWrapper":135,"./visuals":136,"@babel/runtime/helpers/interopRequireDefault":3,"document-visibility":29,"element-closest":32,"hidden":59,"inherits":64,"insert-css":65}],133:[function(_dereq_,module,exports){
|
|
20688
20613
|
"use strict";
|
|
20689
20614
|
|
|
20690
20615
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -20798,7 +20723,7 @@ var _default = exports.default = {
|
|
|
20798
20723
|
}
|
|
20799
20724
|
};
|
|
20800
20725
|
|
|
20801
|
-
},{"./../util/videomailError":
|
|
20726
|
+
},{"./../util/videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"number-is-integer":72}],134:[function(_dereq_,module,exports){
|
|
20802
20727
|
"use strict";
|
|
20803
20728
|
|
|
20804
20729
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21048,7 +20973,7 @@ var Form = function Form(container, formElement, options) {
|
|
|
21048
20973
|
(0, _inherits.default)(Form, _eventEmitter.default);
|
|
21049
20974
|
var _default = exports.default = Form;
|
|
21050
20975
|
|
|
21051
|
-
},{"../events":
|
|
20976
|
+
},{"../events":119,"../util/eventEmitter":125,"../util/videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"get-form-data":48,"hidden":59,"hyperscript":61,"inherits":64}],135:[function(_dereq_,module,exports){
|
|
21052
20977
|
"use strict";
|
|
21053
20978
|
|
|
21054
20979
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21121,7 +21046,7 @@ var _default = exports.default = {
|
|
|
21121
21046
|
}
|
|
21122
21047
|
};
|
|
21123
21048
|
|
|
21124
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"deepmerge":
|
|
21049
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"deepmerge":25}],136:[function(_dereq_,module,exports){
|
|
21125
21050
|
"use strict";
|
|
21126
21051
|
|
|
21127
21052
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21454,7 +21379,7 @@ var Visuals = function Visuals(container, options) {
|
|
|
21454
21379
|
(0, _inherits.default)(Visuals, _eventEmitter.default);
|
|
21455
21380
|
var _default = exports.default = Visuals;
|
|
21456
21381
|
|
|
21457
|
-
},{"../events":
|
|
21382
|
+
},{"../events":119,"../util/eventEmitter":125,"./visuals/inside/recorderInsides":142,"./visuals/notifier":143,"./visuals/recorder":144,"./visuals/replay":145,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61,"inherits":64}],137:[function(_dereq_,module,exports){
|
|
21458
21383
|
"use strict";
|
|
21459
21384
|
|
|
21460
21385
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21528,7 +21453,7 @@ function _default(visuals, options) {
|
|
|
21528
21453
|
};
|
|
21529
21454
|
}
|
|
21530
21455
|
|
|
21531
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":
|
|
21456
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],138:[function(_dereq_,module,exports){
|
|
21532
21457
|
"use strict";
|
|
21533
21458
|
|
|
21534
21459
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21577,7 +21502,7 @@ function _default(visuals, options) {
|
|
|
21577
21502
|
};
|
|
21578
21503
|
}
|
|
21579
21504
|
|
|
21580
|
-
},{"./../../../../events":
|
|
21505
|
+
},{"./../../../../events":119,"./../../../../util/eventEmitter":125,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],139:[function(_dereq_,module,exports){
|
|
21581
21506
|
"use strict";
|
|
21582
21507
|
|
|
21583
21508
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21630,7 +21555,7 @@ function _default(visuals, options) {
|
|
|
21630
21555
|
};
|
|
21631
21556
|
}
|
|
21632
21557
|
|
|
21633
|
-
},{"./../../../../util/videomailError":
|
|
21558
|
+
},{"./../../../../util/videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],140:[function(_dereq_,module,exports){
|
|
21634
21559
|
"use strict";
|
|
21635
21560
|
|
|
21636
21561
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21671,7 +21596,7 @@ function _default(visuals) {
|
|
|
21671
21596
|
};
|
|
21672
21597
|
}
|
|
21673
21598
|
|
|
21674
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":
|
|
21599
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],141:[function(_dereq_,module,exports){
|
|
21675
21600
|
"use strict";
|
|
21676
21601
|
|
|
21677
21602
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21791,7 +21716,7 @@ function _default(visuals, recordNote, options) {
|
|
|
21791
21716
|
};
|
|
21792
21717
|
}
|
|
21793
21718
|
|
|
21794
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":
|
|
21719
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],142:[function(_dereq_,module,exports){
|
|
21795
21720
|
"use strict";
|
|
21796
21721
|
|
|
21797
21722
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21905,7 +21830,7 @@ var RecorderInsides = function RecorderInsides(visuals, options) {
|
|
|
21905
21830
|
(0, _inherits.default)(RecorderInsides, _eventEmitter.default);
|
|
21906
21831
|
var _default = exports.default = RecorderInsides;
|
|
21907
21832
|
|
|
21908
|
-
},{"./../../../events":
|
|
21833
|
+
},{"./../../../events":119,"./../../../util/browser":123,"./../../../util/eventEmitter":125,"./recorder/countdown":137,"./recorder/facingMode":138,"./recorder/pausedNote":139,"./recorder/recordNote":140,"./recorder/recordTimer":141,"@babel/runtime/helpers/interopRequireDefault":3,"inherits":64}],143:[function(_dereq_,module,exports){
|
|
21909
21834
|
"use strict";
|
|
21910
21835
|
|
|
21911
21836
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -22165,7 +22090,7 @@ var Notifier = function Notifier(visuals, options) {
|
|
|
22165
22090
|
(0, _inherits.default)(Notifier, _eventEmitter.default);
|
|
22166
22091
|
var _default = exports.default = Notifier;
|
|
22167
22092
|
|
|
22168
|
-
},{"../../events":
|
|
22093
|
+
},{"../../events":119,"../../util/eventEmitter":125,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61,"inherits":64}],144:[function(_dereq_,module,exports){
|
|
22169
22094
|
(function (Buffer){(function (){
|
|
22170
22095
|
"use strict";
|
|
22171
22096
|
|
|
@@ -22559,8 +22484,8 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
22559
22484
|
retryTimeout = setTimeout(initSocket, options.timeouts.userMedia);
|
|
22560
22485
|
} else if (unloaded) {
|
|
22561
22486
|
/*
|
|
22562
|
-
* can happen
|
|
22563
|
-
* are still in process.
|
|
22487
|
+
* This can happen when a container is unloaded but some user media related callbacks
|
|
22488
|
+
* are still in process. In that case ignore error.
|
|
22564
22489
|
*/
|
|
22565
22490
|
debug("Recorder: already unloaded. Not going to throw error", err);
|
|
22566
22491
|
} else {
|
|
@@ -23020,7 +22945,7 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
23020
22945
|
return false;
|
|
23021
22946
|
}
|
|
23022
22947
|
bytesSum = 0;
|
|
23023
|
-
frame = new _canvasToBuffer.default(canvas, options);
|
|
22948
|
+
frame = new _canvasToBuffer.default(canvas, options.image.types, options.image.quality);
|
|
23024
22949
|
debug("Recorder: record()");
|
|
23025
22950
|
userMedia.record();
|
|
23026
22951
|
self.emit(_events.default.RECORDING, framesCount);
|
|
@@ -23289,7 +23214,7 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
23289
23214
|
var _default = exports.default = Recorder;
|
|
23290
23215
|
|
|
23291
23216
|
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
23292
|
-
},{"../../constants":
|
|
23217
|
+
},{"../../constants":118,"../../events":119,"../../util/browser":123,"../../util/eventEmitter":125,"../../util/humanize":126,"../../util/pretty":128,"../../util/videomailError":130,"./userMedia":146,"@babel/runtime/helpers/interopRequireDefault":3,"animitter":10,"buffer":15,"canvas-to-buffer":18,"deepmerge":25,"hidden":59,"hyperscript":61,"inherits":64,"safe-json-stringify":99,"websocket-stream":113}],145:[function(_dereq_,module,exports){
|
|
23293
23218
|
"use strict";
|
|
23294
23219
|
|
|
23295
23220
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -23586,7 +23511,7 @@ var Replay = function Replay(parentElement, options) {
|
|
|
23586
23511
|
(0, _inherits.default)(Replay, _eventEmitter.default);
|
|
23587
23512
|
var _default = exports.default = Replay;
|
|
23588
23513
|
|
|
23589
|
-
},{"../../events":
|
|
23514
|
+
},{"../../events":119,"../../util/browser":123,"../../util/eventEmitter":125,"../../util/videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"add-eventlistener-with-options":9,"hidden":59,"hyperscript":61,"inherits":64,"iphone-inline-video":67}],146:[function(_dereq_,module,exports){
|
|
23590
23515
|
"use strict";
|
|
23591
23516
|
|
|
23592
23517
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -24001,7 +23926,7 @@ function _default(recorder, options) {
|
|
|
24001
23926
|
};
|
|
24002
23927
|
}
|
|
24003
23928
|
|
|
24004
|
-
},{"./../../events":
|
|
23929
|
+
},{"./../../events":119,"./../../util/audioRecorder":122,"./../../util/browser":123,"./../../util/eventEmitter":125,"./../../util/mediaEvents":127,"./../../util/pretty":128,"./../../util/videomailError":130,"@babel/runtime/helpers/interopRequireDefault":3,"hyperscript":61,"safe-json-stringify":99}],147:[function(_dereq_,module,exports){
|
|
24005
23930
|
"use strict";
|
|
24006
23931
|
|
|
24007
23932
|
module.exports = '@-webkit-keyframes blink{0%{opacity:.9}35%{opacity:.9}50%{opacity:.1}85%{opacity:.1}to{opacity:.9}}@keyframes blink{0%{opacity:.9}35%{opacity:.9}50%{opacity:.1}85%{opacity:.1}to{opacity:.9}}.IIV::-webkit-media-controls-play-button,.IIV::-webkit-media-controls-start-playback-button{opacity:0;pointer-events:none;width:5px}.videomail .visuals{position:relative}.videomail .visuals video.replay{height:100%;width:100%}.videomail .countdown,.videomail .pausedHeader,.videomail .pausedHint,.videomail .recordNote,.videomail .recordTimer{height:auto;margin:0}.videomail .countdown,.videomail .facingMode,.videomail .paused,.videomail .recordNote,.videomail .recordTimer,.videomail noscript{position:absolute;z-index:100}.videomail .countdown,.videomail .pausedHeader,.videomail .pausedHint,.videomail .recordNote,.videomail .recordTimer,.videomail noscript{font-weight:700}.videomail .countdown,.videomail .paused,.videomail noscript{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:100%}.videomail .countdown,.videomail .pausedHeader,.videomail .pausedHint{letter-spacing:4px;text-align:center;text-shadow:-2px 0 #fff,0 2px #fff,2px 0 #fff,0 -2px #fff}.videomail .countdown,.videomail .pausedHeader{font-size:460%;opacity:.9}.videomail .pausedHint{font-size:150%}.videomail .facingMode{background:rgba(30,30,30,.5);border:none;bottom:.6em;color:hsla(0,0%,96%,.9);font-family:monospace;font-size:1.2em;outline:none;padding:.1em .3em;right:.7em;-webkit-transition:all .2s ease;transition:all .2s ease;z-index:10}.videomail .facingMode:hover{background:rgba(50,50,50,.7);cursor:pointer}.videomail .recordNote,.videomail .recordTimer{background:hsla(0,0%,4%,.8);color:#00d814;font-family:monospace;opacity:.9;padding:.3em .4em;right:.7em;-webkit-transition:all 1s ease;transition:all 1s ease}.videomail .recordNote.near,.videomail .recordTimer.near{color:#eb9369}.videomail .recordNote.nigh,.videomail .recordTimer.nigh{color:#ea4b2a}.videomail .recordTimer{top:.7em}.videomail .recordNote{top:3.6em}.videomail .recordNote:before{-webkit-animation:blink 1s infinite;animation:blink 1s infinite;content:"REC"}.videomail .notifier{-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;overflow:hidden}.videomail .radioGroup{display:block}.videomail video{margin-bottom:0}.videomail video.userMedia{background-color:rgba(50,50,50,.1)}';
|
|
@@ -24025,5 +23950,5 @@ if (!navigator) {
|
|
|
24025
23950
|
var _default = exports.default = _client.default; // also add that so that we can require() it the normal ES5 way
|
|
24026
23951
|
module.exports = _client.default;
|
|
24027
23952
|
|
|
24028
|
-
},{"./client":
|
|
23953
|
+
},{"./client":117,"./util/standardize":129,"@babel/runtime/helpers/interopRequireDefault":3}]},{},["videomail-client"])("videomail-client")
|
|
24029
23954
|
});
|