We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66062b0 commit 513a496Copy full SHA for 513a496
1 file changed
README.md
@@ -45,13 +45,13 @@ const str = param(obj);
45
// => "key1[value1][]=10&key1[value1][]=20&key1[value1][]=30&key2=?a=b&c=d"
46
```
47
48
-*You will need to add `"esModuleInterop": true` to the `"compilerOptions"` directive in `tsconfig.json`.*
+*You will need to add `"esModuleInterop": true` to the `"compilerOptions"` field in `tsconfig.json`.*
49
50
ES Modules:
51
52
```html
53
<script type="module">
54
-import { param } from './esm/jquery-param.es.js';
+import param from './esm/jquery-param.es.js';
55
56
const obj = { key1: { value1: [10, 20, 30] }, key2: '?a=b&c=d' };
57
const str = param(obj);
0 commit comments