We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b77a66 commit 3001e72Copy full SHA for 3001e72
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-api-queries",
3
- "version": "0.0.2-alpha.2",
+ "version": "0.0.2-alpha.3",
4
"description": "Elegant and simple way to build requests for REST API",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/core/BaseTransformer.ts
@@ -17,7 +17,7 @@ class BaseTransformer {
17
return item
18
}
19
20
- static send(item: any, snakeCaseKey?: boolean): any {
+ static send(item: any, snakeCaseKey = true): any {
21
if (snakeCaseKey) {
22
return snakeCaseKeys(item)
23
0 commit comments