Skip to content

Commit deb7117

Browse files
author
Sven Ulrich
authored
Docs/append line (#19)
* feat(append-line): added appendline docs, fixed circle badge * docs(append-line): adjust readme
1 parent 3348fd6 commit deb7117

File tree

3 files changed

+3065
-2
lines changed

3 files changed

+3065
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-string-operations",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"description": "Simple lightweight string operation library for Typescript, works with Angular",
55
"main": "dist/index.min.js",
66
"files": [

readme.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
![CircleCI](https://img.shields.io/circleci/build/github/sevensc/typescript-string-operations?logo=circleci&token=e3f75ec3d21d6da12384faf594c9d05fe9f65747)
3+
![CircleCI](https://img.shields.io/circleci/build/github/iwt-svenulrich/typescript-string-operations?logo=circleci&token=9234d9f6803b37ebfcd4887fa2d6d51aa2cf5214)
44
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sevensc_typescript-string-operations&metric=alert_status)](https://sonarcloud.io/dashboard?id=sevensc_typescript-string-operations)![npm](https://img.shields.io/npm/v/typescript-string-operations)![npm](https://img.shields.io/npm/dw/typescript-string-operations)
55
# Simple lightweight string operation library for Typescript.
66
## No jQuery required! Unit tested, works with Angular.
@@ -132,5 +132,7 @@ var fruits = builder.ToString();
132132
| :------------------------:|:-----------:|:--------------------------:|:----------:|
133133
| `Append` | `Method` | appends a string. | `value` |
134134
| `AppendFormat` | `Method` | see description for `String.Format()`| `format`, `args`|
135+
| `AppendLine` | `Method` | appends a string in a new line. | `format`, `args`|
136+
| `AppendLineFormat` | `Method` | like `String.Format()` in a new line | `format`, `args`|
135137
| `Clear` | `Method` | clears the `StringBuilder` | |
136138
| `ToString` | `Method` | creates the actual string. | |

0 commit comments

Comments
 (0)