diff options
author | 2021-08-07 02:28:53 -0700 | |
---|---|---|
committer | 2021-08-07 02:28:53 -0700 | |
commit | 7b48e206db14c8a4bcf845cc79a342fad20c36dd (patch) | |
tree | 028d944fa6fd58a3490d53c75428babf3735ce54 /src/query_string_map.zig | |
parent | 4b1f89114e02f8472b63794534698ec13929080e (diff) | |
download | bun-7b48e206db14c8a4bcf845cc79a342fad20c36dd.tar.gz bun-7b48e206db14c8a4bcf845cc79a342fad20c36dd.tar.zst bun-7b48e206db14c8a4bcf845cc79a342fad20c36dd.zip |
Dynamic routes resolve! Just gotta pass query params to the JS correctly
Former-commit-id: 2c4d3184a4f06ba9dd7d27d653834589796ebd0f
Diffstat (limited to 'src/query_string_map.zig')
-rw-r--r-- | src/query_string_map.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/query_string_map.zig b/src/query_string_map.zig index aec41ac98..dc091a54e 100644 --- a/src/query_string_map.zig +++ b/src/query_string_map.zig @@ -28,7 +28,8 @@ pub const QueryStringMap = struct { } pub const Iterator = struct { - // Assume no query string param will exceed 2048 keys + // Assume no query string param map will exceed 2048 keys + // Browsers typically limit URL lengths to around 64k const VisitedMap = std.bit_set.ArrayBitSet(usize, 2048); i: usize = 0, |