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/CHANGELOG.md +6 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/columnSchema/utils.ts +1 -1
- package/src/test-utils/test-utils.ts +1 -0
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].
|
|
1612
|
+
return methods[name].apply(cloned, args);
|
|
1613
1613
|
}
|
|
1614
1614
|
});
|
|
1615
1615
|
}
|