File tree Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Expand file tree Collapse file tree 1 file changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -1554,21 +1554,9 @@ void Initialize(Local<Object> target,
15541554 SetMethod (context, target, " hexWrite" , StringWrite<HEX>);
15551555 SetMethod (context, target, " ucs2Write" , StringWrite<UCS2>);
15561556
1557- SetFastMethod (context,
1558- target,
1559- " asciiWriteStatic" ,
1560- SlowWriteString<ASCII>,
1561- &fast_write_string);
1562- SetFastMethod (context,
1563- target,
1564- " latin1WriteStatic" ,
1565- SlowWriteString<LATIN1>,
1566- &fast_write_string);
1567- SetFastMethod (context,
1568- target,
1569- " utf8WriteStatic" ,
1570- SlowWriteString<UTF8>,
1571- &fast_write_string);
1557+ SetMethod (context, target, " asciiWriteStatic" , SlowWriteString<ASCII>);
1558+ SetMethod (context, target, " latin1WriteStatic" , SlowWriteString<LATIN1>);
1559+ SetMethod (context, target, " utf8WriteStatic" , SlowWriteString<UTF8>);
15721560
15731561 SetMethod (context, target, " getZeroFillToggle" , GetZeroFillToggle);
15741562}
You can’t perform that action at this time.
0 commit comments