Skip to content

Commit bc5dc42

Browse files
docs: Update README with new function listings
1 parent d8b407c commit bc5dc42

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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. |
@@ -85,6 +85,7 @@ A collection of functions to simplify working with Google Sheets.
8585
| [`isTextStyle`](src/appsscript/sheets/isTextStyle.ts) | Checks if an object is a [`TextStyle`](https://developers.google.com/apps-script/reference/slides/text-style). |
8686
| [`isValidSheetName`](src/appsscript/sheets/isValidSheetName.ts) | Checks if a sheet name is valid. |
8787
| [`isValidSpreadsheetId`](src/appsscript/sheets/isValidSpreadsheetId.ts) | Checks if a spreadsheet ID is valid. |
88+
| [`nonSheet`](src/appsscript/sheets/nonSheet.ts) 🆕 | Checks if an object is not a [`Sheet`](https://developers.google.com/apps-script/reference/spreadsheet/sheet). |
8889
| [`parseA1Notation`](src/appsscript/sheets/parseA1Notation.ts) | Parses an A1 notation (e.g., 'A1:B2') into [`GridRange`](src/appsscript/sheets/types/GridRange.ts) components. |
8990
| [`prependRow`](src/appsscript/sheets/prependRow.ts) | Prepends a single row of data to the sheet. |
9091
| [`prependRows`](src/appsscript/sheets/prependRows.ts) | Prepends multiple rows of data to the sheet. |
@@ -101,7 +102,7 @@ General utility functions that can be useful in any JavaScript/TypeScript projec
101102
<details open><summary>Functions</summary>
102103

103104
| Function | Description |
104-
| :----------------------------------------------------------- | :------------------------------------------------------------------------ |
105+
|:-------------------------------------------------------------|:--------------------------------------------------------------------------|
105106
| [`chunk`](src/base/chunk.ts) | Splits an array into chunks of a specified size. |
106107
| [`decodeHtml`](src/base/decodeHtml.ts) | Decodes HTML entities. |
107108
| [`encodeHtml`](src/base/encodeHtml.ts) | Encodes a string for safe use in HTML. |
@@ -166,7 +167,7 @@ A set of custom exception classes for more specific error handling.
166167
<details open><summary>Functions</summary>
167168

168169
| Exception | Description |
169-
| :----------------------------------------------------------------------------- | :---------------------------------- |
170+
|:-------------------------------------------------------------------------------|:------------------------------------|
170171
| [`Exception`](src/exceptions/Exception.ts) | Base exception class. |
171172
| [`RuntimeException`](src/exceptions/RuntimeException.ts) | Exception for runtime errors. |
172173
| [`EmptyStringException`](src/exceptions/EmptyStringException.ts) | Exception for empty strings. |
@@ -183,7 +184,7 @@ Functions for working with file paths and URLs.
183184
<details open><summary>Functions</summary>
184185

185186
| Function | Description |
186-
| :------------------------------------------- | :-------------------------------------------------------------- |
187+
|:---------------------------------------------|:----------------------------------------------------------------|
187188
| [`isAbsolute`](src/path/isAbsolute.ts) | Checks if a path is absolute. |
188189
| [`isRelative`](src/path/isRelative.ts) | Checks if a path is relative. |
189190
| [`isValidDomain`](src/path/isValidDomain.ts) | Checks if a string is a valid domain name. |
@@ -198,15 +199,15 @@ Functions for working with file paths and URLs.
198199
<details open><summary>Functions</summary>
199200

200201
| Abstract | Description |
201-
| :------------------------------- | :---------- |
202+
|:---------------------------------|:------------|
202203
| [`Class`](src/abstract/Class.ts) | |
203204

204205
</details>
205206

206207
<details open><summary>Functions</summary>
207208

208209
| Interface | Description |
209-
| :--------------------------------------- | :----------------------- |
210+
|:-----------------------------------------|:-------------------------|
210211
| [`Iterator`](src/interfaces/Iterator.ts) | Interface for iterators. |
211212

212213
</details>

0 commit comments

Comments
 (0)