pqb 0.7.1 → 0.7.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/dist/index.js CHANGED
@@ -1609,7 +1609,7 @@ const assignMethodsToClass = (klass, methods) => {
1609
1609
  writable: true,
1610
1610
  value(...args) {
1611
1611
  const cloned = cloneInstance(this);
1612
- return methods[name].call(cloned, args);
1612
+ return methods[name].apply(cloned, args);
1613
1613
  }
1614
1614
  });
1615
1615
  }