Skip to content

Commit

Permalink
make range public so deps dont need to add it as a direct dep too
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Aug 11, 2022
1 parent d1b32fb commit a5384d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.zig
@@ -1,6 +1,6 @@
const std = @import("std");
const string = []const u8;
const range = @import("range").range;
pub const range = @import("range").range;

pub fn fmtByteCountIEC(alloc: std.mem.Allocator, b: u64) !string {
return try reduceNumber(alloc, b, 1024, "B", "KMGTPEZY");
Expand Down

0 comments on commit a5384d1

Please sign in to comment.