ig-types 6.22.1 → 6.22.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.
Files changed (2) hide show
  1. package/Promise.js +2 -2
  2. package/package.json +1 -1
package/Promise.js CHANGED
@@ -893,9 +893,9 @@ object.Mixin('PromiseMixin', 'soft', {
893
893
  : error ?
894
894
  function(){
895
895
  try{
896
- func(...data)
896
+ return func(...data)
897
897
  }catch(err){
898
- error(err) } }()
898
+ return error(err) } }()
899
899
  : func(...data) },
900
900
  })
901
901
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ig-types",
3
- "version": "6.22.1",
3
+ "version": "6.22.2",
4
4
  "description": "Generic JavaScript types and type extensions...",
5
5
  "main": "main.js",
6
6
  "scripts": {