@@ -46,7 +46,7 @@ Functions specifically designed for Google Apps Script environments, including u
4646<details open ><summary >Functions</summary >
4747
4848| Function | Description |
49- | :----------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------ |
49+ | :--------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------- |
5050| [ ` checkMultipleAccount ` ] ( src/appsscript/checkMultipleAccount.ts ) | Checks if multiple Google accounts are in use. |
5151| [ ` getByteSize ` ] ( src/appsscript/getByteSize.ts ) | Returns the size of a string in bytes. |
5252| [ ` isHtmlOutput ` ] ( src/appsscript/isHtmlOutput.ts ) | Checks if an object is an [ ` HtmlOutput ` ] ( https://developers.google.com/apps-script/reference/html/html-output ) . |
@@ -62,7 +62,7 @@ A collection of functions to simplify working with Google Sheets.
6262<details open ><summary >Functions</summary >
6363
6464| Function | Description |
65- | :---------------------------------------------------------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------- |
65+ | :-------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------- |
6666| [ ` appendColumn ` ] ( src/appsscript/sheets/appendColumn.ts ) | Appends a single column of data to the sheet. |
6767| [ ` appendColumns ` ] ( src/appsscript/sheets/appendColumns.ts ) | Appends multiple columns of data to the sheet. |
6868| [ ` appendRow ` ] ( src/appsscript/sheets/appendRow.ts ) | Appends a single row of data to the sheet. |
@@ -102,7 +102,7 @@ General utility functions that can be useful in any JavaScript/TypeScript projec
102102<details open ><summary >Functions</summary >
103103
104104| Function | Description |
105- | :------------------------------------------------------------- | :----------------------------------------------------------------------------------------------- |
105+ | :----------------------------------------------------------- | :--------------------------------------------------------------------------------------------- |
106106| [ ` chunk ` ] ( src/base/chunk.ts ) | Splits an array into chunks of a specified size. |
107107| [ ` decodeHtml ` ] ( src/base/decodeHtml.ts ) | Decodes HTML entities. |
108108| [ ` encodeHtml ` ] ( src/base/encodeHtml.ts ) | Encodes a string for safe use in HTML. |
@@ -139,6 +139,7 @@ General utility functions that can be useful in any JavaScript/TypeScript projec
139139| [ ` nonArray ` ] ( src/base/nonArray.ts ) 🆕 | Returns ` true ` if not ` Array ` . |
140140| [ ` nonBoolean ` ] ( src/base/nonBoolean.ts ) 🆕 | Returns ` true ` if not ` boolean ` . |
141141| [ ` nonEmpty ` ] ( src/base/nonEmpty.ts ) 🆕 | Returns ` true ` if not "empty". |
142+ | [ ` nonFunction ` ] ( src/base/nonFunction.ts ) 🆕 | Returns ` true ` if not ` Function ` . |
142143| [ ` nonNil ` ] ( src/base/nonNil.ts ) | Returns ` true ` if not ` null ` or ` undefined ` . |
143144| [ ` nonNull ` ] ( src/base/nonNull.ts ) | Returns ` true ` if not ` null ` . |
144145| [ ` nonNumber ` ] ( src/base/nonNumber.ts ) | Returns ` true ` if not a ` number ` . |
@@ -172,7 +173,7 @@ A set of custom exception classes for more specific error handling.
172173<details open ><summary >Functions</summary >
173174
174175| Exception | Description |
175- | :------------------------------------------------------------------------------- | :------------------------------------ |
176+ | :----------------------------------------------------------------------------- | :---------------------------------- |
176177| [ ` Exception ` ] ( src/exceptions/Exception.ts ) | Base exception class. |
177178| [ ` RuntimeException ` ] ( src/exceptions/RuntimeException.ts ) | Exception for runtime errors. |
178179| [ ` EmptyStringException ` ] ( src/exceptions/EmptyStringException.ts ) | Exception for empty strings. |
@@ -189,7 +190,7 @@ Functions for working with file paths and URLs.
189190<details open ><summary >Functions</summary >
190191
191192| Function | Description |
192- | :--------------------------------------------- | :---------------------------------------------------------------- |
193+ | :------------------------------------------- | :-------------------------------------------------------------- |
193194| [ ` isAbsolute ` ] ( src/path/isAbsolute.ts ) | Checks if a path is absolute. |
194195| [ ` isRelative ` ] ( src/path/isRelative.ts ) | Checks if a path is relative. |
195196| [ ` isValidDomain ` ] ( src/path/isValidDomain.ts ) | Checks if a string is a valid domain name. |
@@ -204,15 +205,15 @@ Functions for working with file paths and URLs.
204205<details open ><summary >Functions</summary >
205206
206207| Abstract | Description |
207- | :--------------------------------- | :------------ |
208+ | :------------------------------- | :---------- |
208209| [ ` Class ` ] ( src/abstract/Class.ts ) | |
209210
210211</details >
211212
212213<details open ><summary >Functions</summary >
213214
214215| Interface | Description |
215- | :----------------------------------------- | :------------------------- |
216+ | :--------------------------------------- | :----------------------- |
216217| [ ` Iterator ` ] ( src/interfaces/Iterator.ts ) | Interface for iterators. |
217218
218219</details >
0 commit comments