@@ -2819,27 +2819,27 @@ function hasOwnProperty(obj, prop) {
2819
2819
/* 5 */
2820
2820
/***/ ( function ( module , exports ) {
2821
2821
2822
- var g ;
2823
-
2824
- // This works in non-strict mode
2825
- g = ( function ( ) {
2826
- return this ;
2827
- } ) ( ) ;
2828
-
2829
- try {
2830
- // This works if eval is allowed (see CSP)
2831
- g = g || Function ( "return this" ) ( ) || ( 1 , eval ) ( "this" ) ;
2832
- } catch ( e ) {
2833
- // This works if the window reference is available
2834
- if ( typeof window === "object" )
2835
- g = window ;
2836
- }
2837
-
2838
- // g can still be undefined, but nothing to do about it...
2839
- // We return undefined, instead of nothing here, so it's
2840
- // easier to handle this case. if(!global) { ...}
2841
-
2842
- module . exports = g ;
2822
+ var g ;
2823
+
2824
+ // This works in non-strict mode
2825
+ g = ( function ( ) {
2826
+ return this ;
2827
+ } ) ( ) ;
2828
+
2829
+ try {
2830
+ // This works if eval is allowed (see CSP)
2831
+ g = g || Function ( "return this" ) ( ) || ( 1 , eval ) ( "this" ) ;
2832
+ } catch ( e ) {
2833
+ // This works if the window reference is available
2834
+ if ( typeof window === "object" )
2835
+ g = window ;
2836
+ }
2837
+
2838
+ // g can still be undefined, but nothing to do about it...
2839
+ // We return undefined, instead of nothing here, so it's
2840
+ // easier to handle this case. if(!global) { ...}
2841
+
2842
+ module . exports = g ;
2843
2843
2844
2844
2845
2845
/***/ } ) ,
@@ -4715,7 +4715,7 @@ function FormatStream(opts) {
4715
4715
}
4716
4716
util . inherits ( FormatStream , Transform ) ;
4717
4717
4718
- var reHesitation = / % H E S I T A T I O N ? / g; // http ://www.ibm.com/watson/developercloud/doc/ speech-to-text/output.shtml#hesitation - D_ is handled below
4718
+ var reHesitation = / % H E S I T A T I O N ? / g; // https ://console.bluemix.net/docs/services/ speech-to-text/output.html#output - D_ is handled below
4719
4719
var reRepeatedCharacter = / ( [ a - z ] ) \1{ 2 , } / gi; // detect the same character repeated three or more times and remove it
4720
4720
var reDUnderscoreWords = / D _ [ ^ \s ] + / g; // replace D_(anything)
4721
4721
0 commit comments