Skip to content

Commit

Permalink
chore: build
Browse files Browse the repository at this point in the history
  • Loading branch information
appy-one committed Oct 2, 2023
1 parent f92ad47 commit fda5c59
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 32 deletions.
11 changes: 6 additions & 5 deletions dist/cjs/btree/binary-tree.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/btree/binary-tree.js.map

Large diffs are not rendered by default.

38 changes: 29 additions & 9 deletions dist/cjs/storage/binary/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cjs/storage/binary/index.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/esm/btree/binary-tree.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 29 additions & 9 deletions dist/esm/storage/binary/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/storage/binary/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/types/btree/binary-tree.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ export declare class BinaryBPlusTree {
fillFactor?: number;
/** whether free space for later node/leaf creation is kept or added. If `allocatedBytes` is not given (or 0), 10% free space will be used. Default is `true` */
keepFreeSpace?: boolean;
/** whether to increase the max amount of node/leaf entries (usually rebuilding is needed because of growth, so this might be a good idea). Default is true, will increase max entries with 10% (until the max of 255 is reached) */
/** whether to increase the max amount of node/leaf entries (usually rebuilding is needed because of growth, so this might be a good idea). Default is true, will increase max entries with 50% (until the max of 255 is reached) */
increaseMaxEntries?: boolean;
/** optionally reserves free space for specified amount of new leaf entries (overrides the default of 10% growth, only applies if `allocatedBytes` is not specified or 0). Default is `0` */
reserveSpaceForNewEntries?: number;
Expand Down

0 comments on commit fda5c59

Please sign in to comment.