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/CHANGELOG.md
CHANGED
package/dist/index.esm.js
CHANGED
|
@@ -1605,7 +1605,7 @@ const assignMethodsToClass = (klass, methods) => {
|
|
|
1605
1605
|
writable: true,
|
|
1606
1606
|
value(...args) {
|
|
1607
1607
|
const cloned = cloneInstance(this);
|
|
1608
|
-
return methods[name].
|
|
1608
|
+
return methods[name].apply(cloned, args);
|
|
1609
1609
|
}
|
|
1610
1610
|
});
|
|
1611
1611
|
}
|