mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
Integrate CSS with bundler (#14281)
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com> Co-authored-by: Zack Radisic <zackradisic@Mac.attlocal.net> Co-authored-by: zackradisic <zackradisic@users.noreply.github.com> Co-authored-by: Zack Radisic <zackradisic@Zacks-MBP.attlocal.net>
This commit is contained in:
@@ -203,6 +203,10 @@ pub const MutableString = struct {
|
||||
try self.list.resize(self.allocator, amount);
|
||||
}
|
||||
|
||||
pub inline fn appendCharNTimes(self: *MutableString, char: u8, n: usize) !void {
|
||||
try self.list.appendNTimes(self.allocator, char, n);
|
||||
}
|
||||
|
||||
pub inline fn appendChar(self: *MutableString, char: u8) !void {
|
||||
try self.list.append(self.allocator, char);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user