File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ getPackageName ('package.json')
102
102
### Global Bundle (CDN)
103
103
104
104
Fluture is hosted in full with all of its dependencies at
105
- https://cdn.jsdelivr.net/gh/fluture-js/[email protected] .5 /dist/bundle.js
105
+ https://cdn.jsdelivr.net/gh/fluture-js/[email protected] .6 /dist/bundle.js
106
106
107
107
This script will add ` Fluture ` to the global scope.
108
108
Original file line number Diff line number Diff line change 1
1
/**
2
- * Fluture bundled; version 12.0.0-beta.5
2
+ * Fluture bundled; version 12.0.0-beta.6
3
3
*/
4
4
5
5
var Fluture = ( function ( ) {
@@ -738,6 +738,8 @@ var Fluture = (function () {
738
738
Future [ FL . of ] = resolve ;
739
739
Future [ FL . chainRec ] = chainRec ;
740
740
741
+ Future . prototype [ '@@type' ] = $$type ;
742
+
741
743
Future . prototype [ '@@show' ] = function Future$show ( ) {
742
744
return this . toString ( ) ;
743
745
} ;
@@ -2155,6 +2157,7 @@ var Fluture = (function () {
2155
2157
Concurrently . prototype =
2156
2158
construct . prototype = { constructor : construct } ;
2157
2159
2160
+ proto [ $$type ] = OUTERTYPE ;
2158
2161
construct [ $$type ] = OUTERTYPE ;
2159
2162
2160
2163
var mzero = new Concurrently ( zero ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " fluture" ,
3
- "version" : " 12.0.0-beta.5 " ,
3
+ "version" : " 12.0.0-beta.6 " ,
4
4
"description" : " FantasyLand compliant (monadic) alternative to Promises" ,
5
5
"main" : " index.cjs" ,
6
6
"type" : " module" ,
You can’t perform that action at this time.
0 commit comments