Skip to content

Commit 63aa0b6

Browse files
author
Sven Ulrich
committed
updatedeps: docs
1 parent 7bbcf10 commit 63aa0b6

File tree

4 files changed

+27
-24
lines changed

4 files changed

+27
-24
lines changed

CONTRIBUTING.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Readme for developers
1+
# Contributing
22

33
## Getting Started
44

55
1. clone this repo
6-
1. execute `npm install -g gulp`
7-
1. execute `npm install`
6+
1. execute `yarn install (not npm!)`
87
1. code!
9-
1. build using `npm run build`
10-
1. test using `npm run test`
8+
1. build using `yarn build`
9+
1. test using `yarn test`

README.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
# Simple lightweight string operation library for Typescript.
99
## No jQuery required! Unit tested, works with Angular.
1010

11+
I recently got feedback that sometimes there are issues when using `String`, since its actually replacing the native `String` object from JavaScript. You can use `$String` instead.
12+
1113
```typescript
12-
import { String, StringBuilder } from 'typescript-string-operations';
14+
import { $String, StringBuilder } from 'typescript-string-operations';
1315
```
14-
15-
I recently got feedback that sometimes there are issues when using `String`, since its actually replacing the native `String` object from JavaScript. Youcan use `$String` instead.
16+
17+
The class `String` is still available, but will be removed in the future.
1618

1719
```typescript
18-
import { $String } from 'typescript-string-operations';
20+
import { String } from 'typescript-string-operations';
1921
```
2022

2123
#### USAGE:

index.ts

+14-15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ export class $String {
44
private static readonly regexNumber = /{(\d+(:\w*)?)}/g;
55
private static readonly regexObject = /{(\w+(:\w*)?)}/g;
66
public static empty = '';
7+
public static Empty = '';
8+
9+
public static IsNullOrWhiteSpace(value: string | null | undefined): boolean {
10+
return $String.isNullOrWhiteSpace(value);
11+
}
12+
13+
public static Join(delimiter: string, ...args: (string | object | Array<any>)[]): string {
14+
return $String.join(delimiter, ...args);
15+
}
16+
17+
public static Format(format: string, ...args: any[]): string {
18+
return $String.format(format, ...args);
19+
}
720

821
public static isNullOrWhiteSpace(value: string | null | undefined): boolean {
922
try {
@@ -258,21 +271,7 @@ export class $String {
258271
}
259272

260273

261-
export class String extends $String {
262-
public static Empty = '';
263-
264-
public static IsNullOrWhiteSpace(value: string | null | undefined): boolean {
265-
return $String.isNullOrWhiteSpace(value);
266-
}
267-
268-
public static Join(delimiter: string, ...args: (string | object | Array<any>)[]): string {
269-
return $String.join(delimiter, ...args);
270-
}
271-
272-
public static Format(format: string, ...args: any[]): string {
273-
return $String.format(format, ...args);
274-
}
275-
}
274+
export class String extends $String { }
276275

277276
export class StringBuilder {
278277
public Values: string[];

string.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ export declare class $String {
66
static format(format: string, ...args: any[]): string;
77
}
88

9+
/**
10+
* @deprecated String is overriding the native `String` object, this class will be removed in the future! Use `$String` instead.
11+
*/
912
export declare class String extends $String {
1013
/**
1114
* @deprecated The property should not be used, and will be removed in future versions! Use `String.empty` instead.

0 commit comments

Comments
 (0)