videomail-client 8.2.0 → 8.2.1
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/audit-ci.json +0 -1
- package/gulpfile.js +2 -13
- package/package.json +3 -4
- package/prototype/js/videomail-client.js +144 -193
- 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 +1 -1
- 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
|
-
(function (Buffer){(function (){
|
|
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
|
-
}
|
|
666
|
-
|
|
667
|
-
var atobBest = findBest(w.atob);
|
|
668
|
-
w.atob = atobBest;
|
|
669
|
-
|
|
670
|
-
if ((typeof module === 'object') && module && module.exports) {
|
|
671
|
-
module.exports = atobBest;
|
|
672
|
-
}
|
|
673
|
-
}(window));
|
|
674
|
-
|
|
675
|
-
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
676
|
-
},{"buffer":16}],12:[function(_dereq_,module,exports){
|
|
628
|
+
},{"events":42,"inherits":64,"raf":83}],11:[function(_dereq_,module,exports){
|
|
677
629
|
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
630
|
|
|
679
631
|
|
|
680
|
-
},{"typedarray-to-buffer":
|
|
632
|
+
},{"typedarray-to-buffer":109,"validate.io-float32array":112}],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":116}],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,7 +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
|
-
},{}],
|
|
17022
|
+
},{}],112:[function(_dereq_,module,exports){
|
|
17071
17023
|
'use strict';
|
|
17072
17024
|
|
|
17073
17025
|
// FUNCTIONS //
|
|
@@ -17093,7 +17045,7 @@ function isFloat32Array( value ) {
|
|
|
17093
17045
|
|
|
17094
17046
|
module.exports = isFloat32Array;
|
|
17095
17047
|
|
|
17096
|
-
},{}],
|
|
17048
|
+
},{}],113:[function(_dereq_,module,exports){
|
|
17097
17049
|
(function (process,Buffer){(function (){
|
|
17098
17050
|
var stream = _dereq_('readable-stream')
|
|
17099
17051
|
var eos = _dereq_('end-of-stream')
|
|
@@ -17331,7 +17283,7 @@ Duplexify.prototype.end = function(data, enc, cb) {
|
|
|
17331
17283
|
module.exports = Duplexify
|
|
17332
17284
|
|
|
17333
17285
|
}).call(this)}).call(this,_dereq_('_process'),_dereq_("buffer").Buffer)
|
|
17334
|
-
},{"_process":
|
|
17286
|
+
},{"_process":77,"buffer":15,"end-of-stream":33,"inherits":64,"readable-stream":94,"stream-shift":102}],114:[function(_dereq_,module,exports){
|
|
17335
17287
|
(function (process,global){(function (){
|
|
17336
17288
|
'use strict'
|
|
17337
17289
|
|
|
@@ -17524,7 +17476,7 @@ function WebSocketStream(target, protocols, options) {
|
|
|
17524
17476
|
}
|
|
17525
17477
|
|
|
17526
17478
|
}).call(this)}).call(this,_dereq_('_process'),typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : typeof window !== "undefined" ? window : {})
|
|
17527
|
-
},{"_process":
|
|
17479
|
+
},{"_process":77,"duplexify":113,"readable-stream":94,"safe-buffer":98,"ws":115}],115:[function(_dereq_,module,exports){
|
|
17528
17480
|
|
|
17529
17481
|
var ws = null
|
|
17530
17482
|
|
|
@@ -17538,7 +17490,7 @@ if (typeof WebSocket !== 'undefined') {
|
|
|
17538
17490
|
|
|
17539
17491
|
module.exports = ws
|
|
17540
17492
|
|
|
17541
|
-
},{}],
|
|
17493
|
+
},{}],116:[function(_dereq_,module,exports){
|
|
17542
17494
|
// Returns a wrapper function that returns a wrapped callback
|
|
17543
17495
|
// The wrapper function should do some stuff, and return a
|
|
17544
17496
|
// presumably different callback function.
|
|
@@ -17573,10 +17525,10 @@ function wrappy (fn, cb) {
|
|
|
17573
17525
|
}
|
|
17574
17526
|
}
|
|
17575
17527
|
|
|
17576
|
-
},{}],
|
|
17528
|
+
},{}],117:[function(_dereq_,module,exports){
|
|
17577
17529
|
module.exports={
|
|
17578
17530
|
"name": "videomail-client",
|
|
17579
|
-
"version": "8.2.
|
|
17531
|
+
"version": "8.2.1",
|
|
17580
17532
|
"description": "A wicked npm package to record videos directly in the browser, wohooo!",
|
|
17581
17533
|
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
|
|
17582
17534
|
"contributors": [
|
|
@@ -17627,7 +17579,7 @@ module.exports={
|
|
|
17627
17579
|
"add-eventlistener-with-options": "1.25.5",
|
|
17628
17580
|
"animitter": "3.0.0",
|
|
17629
17581
|
"audio-sample": "3.0.1",
|
|
17630
|
-
"canvas-to-buffer": "
|
|
17582
|
+
"canvas-to-buffer": "4.0.1",
|
|
17631
17583
|
"classlist.js": "1.1.20150312",
|
|
17632
17584
|
"contains": "0.1.1",
|
|
17633
17585
|
"core-js": "3.37.1",
|
|
@@ -17660,7 +17612,7 @@ module.exports={
|
|
|
17660
17612
|
"@babel/eslint-parser": "7.25.1",
|
|
17661
17613
|
"@babel/plugin-transform-runtime": "7.24.7",
|
|
17662
17614
|
"@babel/preset-env": "7.25.3",
|
|
17663
|
-
"audit-ci": "
|
|
17615
|
+
"audit-ci": "7.1.0",
|
|
17664
17616
|
"autoprefixer": "10.4.20",
|
|
17665
17617
|
"babelify": "10.0.0",
|
|
17666
17618
|
"body-parser": "1.20.2",
|
|
@@ -17690,7 +17642,6 @@ module.exports={
|
|
|
17690
17642
|
"gulp-sourcemaps": "3.0.0",
|
|
17691
17643
|
"gulp-stylus": "3.0.1",
|
|
17692
17644
|
"gulp-terser": "2.1.0",
|
|
17693
|
-
"gulp-todo": "7.1.1",
|
|
17694
17645
|
"minimist": "1.2.8",
|
|
17695
17646
|
"nib": "1.2.0",
|
|
17696
17647
|
"postcss": "8.4.40",
|
|
@@ -17705,7 +17656,7 @@ module.exports={
|
|
|
17705
17656
|
}
|
|
17706
17657
|
}
|
|
17707
17658
|
|
|
17708
|
-
},{}],
|
|
17659
|
+
},{}],118:[function(_dereq_,module,exports){
|
|
17709
17660
|
"use strict";
|
|
17710
17661
|
|
|
17711
17662
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -17882,7 +17833,7 @@ Object.keys(_constants.default.public).forEach(function (name) {
|
|
|
17882
17833
|
VideomailClient.events = _events.default;
|
|
17883
17834
|
var _default = exports.default = VideomailClient;
|
|
17884
17835
|
|
|
17885
|
-
},{"./constants":
|
|
17836
|
+
},{"./constants":119,"./events":120,"./options":121,"./resource":122,"./util/browser":124,"./util/collectLogger":125,"./util/eventEmitter":126,"./wrappers/container":133,"./wrappers/optionsWrapper":136,"./wrappers/visuals/replay":146,"@babel/runtime/helpers/interopRequireDefault":3,"deepmerge":25,"inherits":64,"readystate":95}],119:[function(_dereq_,module,exports){
|
|
17886
17837
|
"use strict";
|
|
17887
17838
|
|
|
17888
17839
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -17899,7 +17850,7 @@ var _default = exports.default = {
|
|
|
17899
17850
|
}
|
|
17900
17851
|
};
|
|
17901
17852
|
|
|
17902
|
-
},{}],
|
|
17853
|
+
},{}],120:[function(_dereq_,module,exports){
|
|
17903
17854
|
"use strict";
|
|
17904
17855
|
|
|
17905
17856
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -17994,7 +17945,7 @@ var _default = exports.default = (0, _keymirror.default)({
|
|
|
17994
17945
|
SERVER_READY: null // Gets emitted when the ready command is sent through sockets from the server for recording
|
|
17995
17946
|
});
|
|
17996
17947
|
|
|
17997
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"keymirror":
|
|
17948
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"keymirror":71}],121:[function(_dereq_,module,exports){
|
|
17998
17949
|
(function (process){(function (){
|
|
17999
17950
|
"use strict";
|
|
18000
17951
|
|
|
@@ -18208,7 +18159,7 @@ var _default = exports.default = {
|
|
|
18208
18159
|
};
|
|
18209
18160
|
|
|
18210
18161
|
}).call(this)}).call(this,_dereq_('_process'))
|
|
18211
|
-
},{"../../package.json":
|
|
18162
|
+
},{"../../package.json":117,"_process":77}],122:[function(_dereq_,module,exports){
|
|
18212
18163
|
"use strict";
|
|
18213
18164
|
|
|
18214
18165
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18363,7 +18314,7 @@ function _default(options) {
|
|
|
18363
18314
|
};
|
|
18364
18315
|
}
|
|
18365
18316
|
|
|
18366
|
-
},{"./constants":
|
|
18317
|
+
},{"./constants":119,"@babel/runtime/helpers/interopRequireDefault":3,"superagent":104}],123:[function(_dereq_,module,exports){
|
|
18367
18318
|
"use strict";
|
|
18368
18319
|
|
|
18369
18320
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18496,7 +18447,7 @@ function _default(userMedia, options) {
|
|
|
18496
18447
|
};
|
|
18497
18448
|
}
|
|
18498
18449
|
|
|
18499
|
-
},{"./browser":
|
|
18450
|
+
},{"./browser":124,"./videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"audio-sample":11,"is-power-of-two":69}],124:[function(_dereq_,module,exports){
|
|
18500
18451
|
"use strict";
|
|
18501
18452
|
|
|
18502
18453
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18730,7 +18681,7 @@ var Browser = function Browser(options) {
|
|
|
18730
18681
|
};
|
|
18731
18682
|
var _default = exports.default = Browser;
|
|
18732
18683
|
|
|
18733
|
-
},{"./videomailError":
|
|
18684
|
+
},{"./videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"defined":27,"ua-parser-js":110}],125:[function(_dereq_,module,exports){
|
|
18734
18685
|
"use strict";
|
|
18735
18686
|
|
|
18736
18687
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18798,7 +18749,7 @@ function _default() {
|
|
|
18798
18749
|
};
|
|
18799
18750
|
}
|
|
18800
18751
|
|
|
18801
|
-
},{"./browser":
|
|
18752
|
+
},{"./browser":124,"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/toConsumableArray":6,"format-util":45}],126:[function(_dereq_,module,exports){
|
|
18802
18753
|
"use strict";
|
|
18803
18754
|
|
|
18804
18755
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18865,7 +18816,7 @@ function _default(options, name) {
|
|
|
18865
18816
|
};
|
|
18866
18817
|
}
|
|
18867
18818
|
|
|
18868
|
-
},{"./../events":
|
|
18819
|
+
},{"./../events":120,"./videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"despot":28,"safe-json-stringify":99}],127:[function(_dereq_,module,exports){
|
|
18869
18820
|
"use strict";
|
|
18870
18821
|
|
|
18871
18822
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -18887,7 +18838,7 @@ var _default = exports.default = {
|
|
|
18887
18838
|
}
|
|
18888
18839
|
};
|
|
18889
18840
|
|
|
18890
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"filesize":
|
|
18841
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"filesize":44,"humanize-duration":60}],128:[function(_dereq_,module,exports){
|
|
18891
18842
|
"use strict";
|
|
18892
18843
|
|
|
18893
18844
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -19024,7 +18975,7 @@ var _default = exports.default = [
|
|
|
19024
18975
|
* 'timeupdate'
|
|
19025
18976
|
*/];
|
|
19026
18977
|
|
|
19027
|
-
},{}],
|
|
18978
|
+
},{}],129:[function(_dereq_,module,exports){
|
|
19028
18979
|
"use strict";
|
|
19029
18980
|
|
|
19030
18981
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -19092,7 +19043,7 @@ function _default(anything, options) {
|
|
|
19092
19043
|
return anything.toString();
|
|
19093
19044
|
}
|
|
19094
19045
|
|
|
19095
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"safe-json-stringify":
|
|
19046
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"safe-json-stringify":99}],130:[function(_dereq_,module,exports){
|
|
19096
19047
|
"use strict";
|
|
19097
19048
|
|
|
19098
19049
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -19149,7 +19100,7 @@ function _default() {
|
|
|
19149
19100
|
}
|
|
19150
19101
|
}
|
|
19151
19102
|
|
|
19152
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"classlist.js":
|
|
19103
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"classlist.js":20,"request-frame":97}],131:[function(_dereq_,module,exports){
|
|
19153
19104
|
"use strict";
|
|
19154
19105
|
|
|
19155
19106
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -19526,7 +19477,7 @@ VideomailError.create = function (err, explanation, options, parameters) {
|
|
|
19526
19477
|
};
|
|
19527
19478
|
var _default = exports.default = VideomailError;
|
|
19528
19479
|
|
|
19529
|
-
},{"./../resource":
|
|
19480
|
+
},{"./../resource":122,"./browser":124,"./pretty":129,"@babel/runtime/helpers/interopRequireDefault":3,"@babel/runtime/helpers/typeof":7,"create-error":24,"safe-json-stringify":99}],132:[function(_dereq_,module,exports){
|
|
19530
19481
|
"use strict";
|
|
19531
19482
|
|
|
19532
19483
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -20026,7 +19977,7 @@ var Buttons = function Buttons(container, options) {
|
|
|
20026
19977
|
(0, _inherits.default)(Buttons, _eventEmitter.default);
|
|
20027
19978
|
var _default = exports.default = Buttons;
|
|
20028
19979
|
|
|
20029
|
-
},{"../events":
|
|
19980
|
+
},{"../events":120,"../util/eventEmitter":126,"@babel/runtime/helpers/interopRequireDefault":3,"contains":22,"hidden":59,"hyperscript":61,"inherits":64}],133:[function(_dereq_,module,exports){
|
|
20030
19981
|
"use strict";
|
|
20031
19982
|
|
|
20032
19983
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -20684,7 +20635,7 @@ var Container = function Container(options) {
|
|
|
20684
20635
|
(0, _inherits.default)(Container, _eventEmitter.default);
|
|
20685
20636
|
var _default = exports.default = Container;
|
|
20686
20637
|
|
|
20687
|
-
},{"../../styles/css/main.min.css.js":
|
|
20638
|
+
},{"../../styles/css/main.min.css.js":148,"../events":120,"../resource":122,"../util/eventEmitter":126,"../util/videomailError":131,"./buttons":132,"./dimension":134,"./form":135,"./optionsWrapper":136,"./visuals":137,"@babel/runtime/helpers/interopRequireDefault":3,"document-visibility":29,"element-closest":32,"hidden":59,"inherits":64,"insert-css":65}],134:[function(_dereq_,module,exports){
|
|
20688
20639
|
"use strict";
|
|
20689
20640
|
|
|
20690
20641
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -20798,7 +20749,7 @@ var _default = exports.default = {
|
|
|
20798
20749
|
}
|
|
20799
20750
|
};
|
|
20800
20751
|
|
|
20801
|
-
},{"./../util/videomailError":
|
|
20752
|
+
},{"./../util/videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"number-is-integer":72}],135:[function(_dereq_,module,exports){
|
|
20802
20753
|
"use strict";
|
|
20803
20754
|
|
|
20804
20755
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21048,7 +20999,7 @@ var Form = function Form(container, formElement, options) {
|
|
|
21048
20999
|
(0, _inherits.default)(Form, _eventEmitter.default);
|
|
21049
21000
|
var _default = exports.default = Form;
|
|
21050
21001
|
|
|
21051
|
-
},{"../events":
|
|
21002
|
+
},{"../events":120,"../util/eventEmitter":126,"../util/videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"get-form-data":48,"hidden":59,"hyperscript":61,"inherits":64}],136:[function(_dereq_,module,exports){
|
|
21052
21003
|
"use strict";
|
|
21053
21004
|
|
|
21054
21005
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21121,7 +21072,7 @@ var _default = exports.default = {
|
|
|
21121
21072
|
}
|
|
21122
21073
|
};
|
|
21123
21074
|
|
|
21124
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"deepmerge":
|
|
21075
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"deepmerge":25}],137:[function(_dereq_,module,exports){
|
|
21125
21076
|
"use strict";
|
|
21126
21077
|
|
|
21127
21078
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21454,7 +21405,7 @@ var Visuals = function Visuals(container, options) {
|
|
|
21454
21405
|
(0, _inherits.default)(Visuals, _eventEmitter.default);
|
|
21455
21406
|
var _default = exports.default = Visuals;
|
|
21456
21407
|
|
|
21457
|
-
},{"../events":
|
|
21408
|
+
},{"../events":120,"../util/eventEmitter":126,"./visuals/inside/recorderInsides":143,"./visuals/notifier":144,"./visuals/recorder":145,"./visuals/replay":146,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61,"inherits":64}],138:[function(_dereq_,module,exports){
|
|
21458
21409
|
"use strict";
|
|
21459
21410
|
|
|
21460
21411
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21528,7 +21479,7 @@ function _default(visuals, options) {
|
|
|
21528
21479
|
};
|
|
21529
21480
|
}
|
|
21530
21481
|
|
|
21531
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":
|
|
21482
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],139:[function(_dereq_,module,exports){
|
|
21532
21483
|
"use strict";
|
|
21533
21484
|
|
|
21534
21485
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21577,7 +21528,7 @@ function _default(visuals, options) {
|
|
|
21577
21528
|
};
|
|
21578
21529
|
}
|
|
21579
21530
|
|
|
21580
|
-
},{"./../../../../events":
|
|
21531
|
+
},{"./../../../../events":120,"./../../../../util/eventEmitter":126,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],140:[function(_dereq_,module,exports){
|
|
21581
21532
|
"use strict";
|
|
21582
21533
|
|
|
21583
21534
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21630,7 +21581,7 @@ function _default(visuals, options) {
|
|
|
21630
21581
|
};
|
|
21631
21582
|
}
|
|
21632
21583
|
|
|
21633
|
-
},{"./../../../../util/videomailError":
|
|
21584
|
+
},{"./../../../../util/videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],141:[function(_dereq_,module,exports){
|
|
21634
21585
|
"use strict";
|
|
21635
21586
|
|
|
21636
21587
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21671,7 +21622,7 @@ function _default(visuals) {
|
|
|
21671
21622
|
};
|
|
21672
21623
|
}
|
|
21673
21624
|
|
|
21674
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":
|
|
21625
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],142:[function(_dereq_,module,exports){
|
|
21675
21626
|
"use strict";
|
|
21676
21627
|
|
|
21677
21628
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21791,7 +21742,7 @@ function _default(visuals, recordNote, options) {
|
|
|
21791
21742
|
};
|
|
21792
21743
|
}
|
|
21793
21744
|
|
|
21794
|
-
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":
|
|
21745
|
+
},{"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61}],143:[function(_dereq_,module,exports){
|
|
21795
21746
|
"use strict";
|
|
21796
21747
|
|
|
21797
21748
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -21905,7 +21856,7 @@ var RecorderInsides = function RecorderInsides(visuals, options) {
|
|
|
21905
21856
|
(0, _inherits.default)(RecorderInsides, _eventEmitter.default);
|
|
21906
21857
|
var _default = exports.default = RecorderInsides;
|
|
21907
21858
|
|
|
21908
|
-
},{"./../../../events":
|
|
21859
|
+
},{"./../../../events":120,"./../../../util/browser":124,"./../../../util/eventEmitter":126,"./recorder/countdown":138,"./recorder/facingMode":139,"./recorder/pausedNote":140,"./recorder/recordNote":141,"./recorder/recordTimer":142,"@babel/runtime/helpers/interopRequireDefault":3,"inherits":64}],144:[function(_dereq_,module,exports){
|
|
21909
21860
|
"use strict";
|
|
21910
21861
|
|
|
21911
21862
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -22165,7 +22116,7 @@ var Notifier = function Notifier(visuals, options) {
|
|
|
22165
22116
|
(0, _inherits.default)(Notifier, _eventEmitter.default);
|
|
22166
22117
|
var _default = exports.default = Notifier;
|
|
22167
22118
|
|
|
22168
|
-
},{"../../events":
|
|
22119
|
+
},{"../../events":120,"../../util/eventEmitter":126,"@babel/runtime/helpers/interopRequireDefault":3,"hidden":59,"hyperscript":61,"inherits":64}],145:[function(_dereq_,module,exports){
|
|
22169
22120
|
(function (Buffer){(function (){
|
|
22170
22121
|
"use strict";
|
|
22171
22122
|
|
|
@@ -23020,7 +22971,7 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
23020
22971
|
return false;
|
|
23021
22972
|
}
|
|
23022
22973
|
bytesSum = 0;
|
|
23023
|
-
frame = new _canvasToBuffer.default(canvas, options);
|
|
22974
|
+
frame = new _canvasToBuffer.default(canvas, options.image.types, options.image.quality);
|
|
23024
22975
|
debug("Recorder: record()");
|
|
23025
22976
|
userMedia.record();
|
|
23026
22977
|
self.emit(_events.default.RECORDING, framesCount);
|
|
@@ -23289,7 +23240,7 @@ var Recorder = function Recorder(visuals, replay) {
|
|
|
23289
23240
|
var _default = exports.default = Recorder;
|
|
23290
23241
|
|
|
23291
23242
|
}).call(this)}).call(this,_dereq_("buffer").Buffer)
|
|
23292
|
-
},{"../../constants":
|
|
23243
|
+
},{"../../constants":119,"../../events":120,"../../util/browser":124,"../../util/eventEmitter":126,"../../util/humanize":127,"../../util/pretty":129,"../../util/videomailError":131,"./userMedia":147,"@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":114}],146:[function(_dereq_,module,exports){
|
|
23293
23244
|
"use strict";
|
|
23294
23245
|
|
|
23295
23246
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -23586,7 +23537,7 @@ var Replay = function Replay(parentElement, options) {
|
|
|
23586
23537
|
(0, _inherits.default)(Replay, _eventEmitter.default);
|
|
23587
23538
|
var _default = exports.default = Replay;
|
|
23588
23539
|
|
|
23589
|
-
},{"../../events":
|
|
23540
|
+
},{"../../events":120,"../../util/browser":124,"../../util/eventEmitter":126,"../../util/videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"add-eventlistener-with-options":9,"hidden":59,"hyperscript":61,"inherits":64,"iphone-inline-video":67}],147:[function(_dereq_,module,exports){
|
|
23590
23541
|
"use strict";
|
|
23591
23542
|
|
|
23592
23543
|
var _interopRequireDefault = _dereq_("@babel/runtime/helpers/interopRequireDefault");
|
|
@@ -24001,7 +23952,7 @@ function _default(recorder, options) {
|
|
|
24001
23952
|
};
|
|
24002
23953
|
}
|
|
24003
23954
|
|
|
24004
|
-
},{"./../../events":
|
|
23955
|
+
},{"./../../events":120,"./../../util/audioRecorder":123,"./../../util/browser":124,"./../../util/eventEmitter":126,"./../../util/mediaEvents":128,"./../../util/pretty":129,"./../../util/videomailError":131,"@babel/runtime/helpers/interopRequireDefault":3,"hyperscript":61,"safe-json-stringify":99}],148:[function(_dereq_,module,exports){
|
|
24005
23956
|
"use strict";
|
|
24006
23957
|
|
|
24007
23958
|
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 +23976,5 @@ if (!navigator) {
|
|
|
24025
23976
|
var _default = exports.default = _client.default; // also add that so that we can require() it the normal ES5 way
|
|
24026
23977
|
module.exports = _client.default;
|
|
24027
23978
|
|
|
24028
|
-
},{"./client":
|
|
23979
|
+
},{"./client":118,"./util/standardize":130,"@babel/runtime/helpers/interopRequireDefault":3}]},{},["videomail-client"])("videomail-client")
|
|
24029
23980
|
});
|