File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 2025-12-21 - 1.1.26
4+
5+ - chore: remove log
6+
37## 2025-12-21 - 1.1.25
48
59- feat: Implement SWAR-based string serialization
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export function serializeString_SWAR(src: string): void {
4141
4242 while ( mask != 0 ) {
4343 const lane_index = usize ( ctz ( mask ) >> 3 ) ;
44- console . log ( "lane index " + lane_index . toString ( ) ) ;
44+ // console.log("lane index " + lane_index.toString());
4545 const src_offset = srcStart + lane_index ;
4646 const code = load < u16 > ( src_offset ) << 2 ;
4747 const escaped = load < u32 > ( SERIALIZE_ESCAPE_TABLE + code ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " json-as" ,
3- "version" : " 1.1.25 " ,
3+ "version" : " 1.1.26 " ,
44 "author" : " Jairus Tanaka" ,
55 "repository" : {
66 "type" : " git" ,
You can’t perform that action at this time.
0 commit comments