Skip to content

Commit

Permalink
Remove duplicated example of query string parsing
Browse files Browse the repository at this point in the history
Removes a duplicate of the example at line 218.
  • Loading branch information
reznakt authored Jul 25, 2024
1 parent 0d8bf32 commit 3f5d51c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cheatsheets/Nodejs_Security_Cheat_Sheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,6 @@ JavaScript is a dynamic language and depending on how the framework parses a URL
| `?foo[]=bar` | `['bar']` (array of string) |
| `?foo[]=bar&foo[]=baz` | `['bar', 'baz']` (array of string) |
| `?foo[bar]=baz` | `{ bar : 'baz' }` (object with a key) |
| `?foo[]=bar` | `['bar']` (array of string) |
| `?foo[]baz=bar` | `['bar']` (array of string - postfix is lost) |
| `?foo[][baz]=bar` | `[ { baz: 'bar' } ]` (array of object) |
| `?foo[bar][baz]=bar` | `{ foo: { bar: { baz: 'bar' } } }` (object tree) |
Expand Down

0 comments on commit 3f5d51c

Please sign in to comment.