mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-05-01 18:02:15 +00:00
5 lines
308 B
TypeScript
5 lines
308 B
TypeScript
export { CharCode, isLineBreak} from "./util/charcode";
|
|
export { I64, U64 } from "./util/i64";
|
|
export { normalize as normalizePath, resolve as resolvePath, dirname } from "./util/path";
|
|
export const sb: string[] = new Array(256); // shared string builder. 64-bit without growing: (4+4+8) + 8*256 = 16b + 2kb
|