Skip to content

Commit 563d7f0

Browse files
docs: Update README, add banner
1 parent 6ed4266 commit 563d7f0

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

.idea/appsscript-utils.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<a name="top"></a>
22

3+
![google-apps-script-utils-author-MaksymStoianov-artist-DarynaMikhailenko.jpg](docs/assets/google-apps-script-utils-author-MaksymStoianov-artist-DarynaMikhailenko.jpg)
4+
35
# Utilities for Google Apps Script Projects
46

57
[![Built%20with-clasp](https://img.shields.io/badge/Built%20with-clasp-4285f4.svg)](https://github.com/google/clasp)
@@ -48,7 +50,7 @@ Functions that enable various operations on a collection of base utility methods
4850
<details open><summary>Functions</summary>
4951

5052
| Function | Description |
51-
| :-------------------------------------------------- | :------------------------------------- |
53+
|:----------------------------------------------------|:---------------------------------------|
5254
| [`getByteSize`](src/appsscript/base/getByteSize.ts) | Returns the size of a string in bytes. |
5355

5456
</details>
@@ -65,7 +67,7 @@ Functions that enable various operations on Google Drive.
6567
<details open><summary>Functions</summary>
6668

6769
| Function | Description |
68-
| :------- | :---------- |
70+
|:---------|:------------|
6971
| | |
7072

7173
</details>
@@ -77,7 +79,7 @@ Functions that enable various operations on Google Docs.
7779
<details open><summary>Functions</summary>
7880

7981
| Function | Description |
80-
| :------- | :---------- |
82+
|:---------|:------------|
8183
| | |
8284

8385
</details>
@@ -89,7 +91,7 @@ Functions that enable various operations on Google Forms.
8991
<details open><summary>Functions</summary>
9092

9193
| Function | Description |
92-
| :------- | :---------- |
94+
|:---------|:------------|
9395
| | |
9496

9597
</details>
@@ -101,7 +103,7 @@ Functions that enable various operations on Google Sheets.
101103
<details open><summary>Functions</summary>
102104

103105
| Function | Description |
104-
| :------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------- |
106+
|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|
105107
| [`appendColumn`](src/appsscript/sheet/appendColumn.ts) | Appends a single column of data to the sheet. |
106108
| [`appendColumns`](src/appsscript/sheet/appendColumns.ts) | Appends multiple columns of data to the sheet. |
107109
| [`appendRow`](src/appsscript/sheet/appendRow.ts) | Appends a single row of data to the sheet. |
@@ -144,7 +146,7 @@ Functions that enable various operations on Google Slides.
144146
<details open><summary>Functions</summary>
145147

146148
| Function | Description |
147-
| :------- | :---------- |
149+
|:---------|:------------|
148150
| | |
149151

150152
</details>
@@ -156,7 +158,7 @@ Functions that enable various operations on the user interface, including sideba
156158
<details open><summary>Functions</summary>
157159

158160
| Function | Description |
159-
| :------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------- |
161+
|:--------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------|
160162
| [`checkMultipleAccount`](src/appsscript/ui/checkMultipleAccount.ts) | Checks if multiple Google accounts are in use. |
161163
| [`isHtmlOutput`](src/appsscript/ui/isHtmlOutput.ts) | Checks if an object is an [`HtmlOutput`](https://developers.google.com/apps-script/reference/html/html-output). |
162164
| [`isTextOutput`](src/appsscript/ui/isTextOutput.ts) | Checks if an object is a [`TextOutput`](https://developers.google.com/apps-script/reference/content/text-output). |
@@ -173,7 +175,7 @@ This package contains core utility functions that are not tied to a specific App
173175
<details open><summary>Functions</summary>
174176

175177
| Function | Description |
176-
| :------------------------------------------------------------------ | :--------------------------------------------------------------------------------------------- |
178+
|:--------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------|
177179
| [`chunk`](src/lang/array/chunk.ts) | Splits an array into chunks of a specified size. |
178180
| [`decodeHtml`](src/html/decodeHtml.ts) | Decodes HTML entities. |
179181
| [`encodeHtml`](src/html/encodeHtml.ts) | Encodes a string for safe use in HTML. |
@@ -244,14 +246,14 @@ This package is for all exception classes.
244246
<details open><summary>Functions</summary>
245247

246248
| Exception | Description |
247-
| :----------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------ |
249+
|:-------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|
248250
| [`AdminDirectoryException`](src/exception/appsscript/admin/AdminDirectoryException.ts) | Represents an exception thrown when the Admin SDK Directory Service is not available or enabled. |
249251
| [`InvalidGridRangeException`](src/exception/appsscript/sheet/InvalidGridRangeException.ts) | Represents an exception thrown when an invalid [`GridRange`](src/appsscript/sheet/types/GridRange.ts) object is provided. |
250252
| [`InvalidRangeException`](src/exception/appsscript/sheet/InvalidRangeException.ts) | Represents an exception thrown when an invalid [range](https://developers.google.com/apps-script/reference/spreadsheet/sheet) object is provided. |
251253
| [`InvalidSheetException`](src/exception/appsscript/sheet/InvalidSheetException.ts) | Represents an exception thrown when an invalid [sheet](https://developers.google.com/apps-script/reference/spreadsheet/sheet) object is provided. |
252254

253255
| Exception | Description |
254-
| :---------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------- |
256+
|:------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------|
255257
| [`Exception`](src/exception/Exception.ts) | Base exception class. |
256258
| [`RuntimeException`](src/exception/RuntimeException.ts) | Exception for runtime errors. |
257259
| [`EmptyStringException`](src/exception/EmptyStringException.ts) | Exception for empty strings. |
@@ -269,7 +271,7 @@ Functions for working with file paths and URLs.
269271
<details open><summary>Functions</summary>
270272

271273
| Function | Description |
272-
| :----------------------------------------------- | :-------------------------------------------------------------- |
274+
|:-------------------------------------------------|:----------------------------------------------------------------|
273275
| [`isAbsolute`](src/net/path/isAbsolute.ts) | Checks if a path is absolute. |
274276
| [`isRelative`](src/net/path/isRelative.ts) | Checks if a path is relative. |
275277
| [`isValidDomain`](src/net/path/isValidDomain.ts) | Checks if a string is a valid domain name. |
@@ -284,15 +286,15 @@ Functions for working with file paths and URLs.
284286
<details open><summary>Functions</summary>
285287

286288
| Abstract | Description |
287-
| :--------------------------- | :---------- |
289+
|:-----------------------------|:------------|
288290
| [`Class`](src/lang/Class.ts) | |
289291

290292
</details>
291293

292294
<details open><summary>Functions</summary>
293295

294296
| Interface | Description |
295-
| :--------------------------------- | :----------------------- |
297+
|:-----------------------------------|:-------------------------|
296298
| [`Iterator`](src/lang/Iterator.ts) | Interface for iterators. |
297299

298300
</details>
585 KB
Loading

0 commit comments

Comments
 (0)