Skip to content

Commit 7c684d8

Browse files
Merge pull request #23 from MaksymStoianov/max/next
Max/next
2 parents 1e0b4dc + 2a255ea commit 7c684d8

File tree

3 files changed

+19
-13
lines changed

3 files changed

+19
-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: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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+
<p align="right">
5+
<i>Artist: <a href="https://darynamikhailenko.com/?utm_source=github&utm_medium=readme&utm_campaign=appsscript-utils&utm_content=banner_artist_credit" title="Portfolio of Daryna Mikhailenko, the artist">Daryna Mikhailenko</a></i>
6+
</p>
7+
38
# Utilities for Google Apps Script Projects
49

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

5055
| Function | Description |
51-
| :-------------------------------------------------- | :------------------------------------- |
56+
|:----------------------------------------------------|:---------------------------------------|
5257
| [`getByteSize`](src/appsscript/base/getByteSize.ts) | Returns the size of a string in bytes. |
5358

5459
</details>
@@ -65,7 +70,7 @@ Functions that enable various operations on Google Drive.
6570
<details open><summary>Functions</summary>
6671

6772
| Function | Description |
68-
| :------- | :---------- |
73+
|:---------|:------------|
6974
| | |
7075

7176
</details>
@@ -77,7 +82,7 @@ Functions that enable various operations on Google Docs.
7782
<details open><summary>Functions</summary>
7883

7984
| Function | Description |
80-
| :------- | :---------- |
85+
|:---------|:------------|
8186
| | |
8287

8388
</details>
@@ -89,7 +94,7 @@ Functions that enable various operations on Google Forms.
8994
<details open><summary>Functions</summary>
9095

9196
| Function | Description |
92-
| :------- | :---------- |
97+
|:---------|:------------|
9398
| | |
9499

95100
</details>
@@ -101,7 +106,7 @@ Functions that enable various operations on Google Sheets.
101106
<details open><summary>Functions</summary>
102107

103108
| Function | Description |
104-
| :------------------------------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------- |
109+
|:---------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|
105110
| [`appendColumn`](src/appsscript/sheet/appendColumn.ts) | Appends a single column of data to the sheet. |
106111
| [`appendColumns`](src/appsscript/sheet/appendColumns.ts) | Appends multiple columns of data to the sheet. |
107112
| [`appendRow`](src/appsscript/sheet/appendRow.ts) | Appends a single row of data to the sheet. |
@@ -144,7 +149,7 @@ Functions that enable various operations on Google Slides.
144149
<details open><summary>Functions</summary>
145150

146151
| Function | Description |
147-
| :------- | :---------- |
152+
|:---------|:------------|
148153
| | |
149154

150155
</details>
@@ -156,7 +161,7 @@ Functions that enable various operations on the user interface, including sideba
156161
<details open><summary>Functions</summary>
157162

158163
| Function | Description |
159-
| :------------------------------------------------------------------ | :---------------------------------------------------------------------------------------------------------------- |
164+
|:--------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------|
160165
| [`checkMultipleAccount`](src/appsscript/ui/checkMultipleAccount.ts) | Checks if multiple Google accounts are in use. |
161166
| [`isHtmlOutput`](src/appsscript/ui/isHtmlOutput.ts) | Checks if an object is an [`HtmlOutput`](https://developers.google.com/apps-script/reference/html/html-output). |
162167
| [`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 +178,7 @@ This package contains core utility functions that are not tied to a specific App
173178
<details open><summary>Functions</summary>
174179

175180
| Function | Description |
176-
| :------------------------------------------------------------------ | :--------------------------------------------------------------------------------------------- |
181+
|:--------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------|
177182
| [`chunk`](src/lang/array/chunk.ts) | Splits an array into chunks of a specified size. |
178183
| [`decodeHtml`](src/html/decodeHtml.ts) | Decodes HTML entities. |
179184
| [`encodeHtml`](src/html/encodeHtml.ts) | Encodes a string for safe use in HTML. |
@@ -244,14 +249,14 @@ This package is for all exception classes.
244249
<details open><summary>Functions</summary>
245250

246251
| Exception | Description |
247-
| :----------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------ |
252+
|:-------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|
248253
| [`AdminDirectoryException`](src/exception/appsscript/admin/AdminDirectoryException.ts) | Represents an exception thrown when the Admin SDK Directory Service is not available or enabled. |
249254
| [`InvalidGridRangeException`](src/exception/appsscript/sheet/InvalidGridRangeException.ts) | Represents an exception thrown when an invalid [`GridRange`](src/appsscript/sheet/types/GridRange.ts) object is provided. |
250255
| [`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. |
251256
| [`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. |
252257

253258
| Exception | Description |
254-
| :---------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------- |
259+
|:------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------|
255260
| [`Exception`](src/exception/Exception.ts) | Base exception class. |
256261
| [`RuntimeException`](src/exception/RuntimeException.ts) | Exception for runtime errors. |
257262
| [`EmptyStringException`](src/exception/EmptyStringException.ts) | Exception for empty strings. |
@@ -269,7 +274,7 @@ Functions for working with file paths and URLs.
269274
<details open><summary>Functions</summary>
270275

271276
| Function | Description |
272-
| :----------------------------------------------- | :-------------------------------------------------------------- |
277+
|:-------------------------------------------------|:----------------------------------------------------------------|
273278
| [`isAbsolute`](src/net/path/isAbsolute.ts) | Checks if a path is absolute. |
274279
| [`isRelative`](src/net/path/isRelative.ts) | Checks if a path is relative. |
275280
| [`isValidDomain`](src/net/path/isValidDomain.ts) | Checks if a string is a valid domain name. |
@@ -284,15 +289,15 @@ Functions for working with file paths and URLs.
284289
<details open><summary>Functions</summary>
285290

286291
| Abstract | Description |
287-
| :--------------------------- | :---------- |
292+
|:-----------------------------|:------------|
288293
| [`Class`](src/lang/Class.ts) | |
289294

290295
</details>
291296

292297
<details open><summary>Functions</summary>
293298

294299
| Interface | Description |
295-
| :--------------------------------- | :----------------------- |
300+
|:-----------------------------------|:-------------------------|
296301
| [`Iterator`](src/lang/Iterator.ts) | Interface for iterators. |
297302

298303
</details>
585 KB
Loading

0 commit comments

Comments
 (0)