-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- breaking change: renamed everything with "endianess" to "endianness", as the previous spelling was incorrect due to negligence to look it up. - deprecations: `Array2DShape` has been renamed to `shapeOfArray2D`, and the former will be deprecated later on. - in `array2d.ts`, add the functions `newArray2D`, `shuffleArray`, and `shuffledDeque`. these are copies from my `layout_engi_ts@v0.1.1` repo (omar-azmi/layout_engi_ts@b90f821). - add more exports to `builtin_aliases.ts`. "yaaay" - said nobody in response to the bundle size increasing even more than before. - fix typos in repo - add `DEBUG` const enum compilation flags to minify the distribution further, when console logging is not essential. - ready to convert repo to be JSR (http://jsr.io) compatible in the next release.
- Loading branch information
Showing
23 changed files
with
228 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
/** no external library dependancies yet */ | ||
/** no external library dependencies. as it should be. */ | ||
|
||
|
||
/** flags used for minifying (or eliminating) debugging logs and asserts, when an intelligent bundler, such as `esbuild`, is used. */ | ||
export const enum DEBUG { | ||
LOG = 0, | ||
ASSERT = 0, | ||
ERROR = 0, | ||
PRODUCTION = 1, | ||
MINIFY = 1, | ||
} |
Oops, something went wrong.