@@ -45,7 +45,7 @@ export class Wrapper<
45
45
}
46
46
47
47
/**
48
- * The method checks if the value of any type is an instance of the `Wrapper` of any, or given opening and closing chars.
48
+ * The method checks if the value of any type is an instance of the `Wrapper` of any, or the given opening, closing chars, and text .
49
49
* @param value The value of any type to test against the `Wrapper` instance.
50
50
* @param opening Optional opening chars of generic type variable `Opening` to check if the given `value` contains.
51
51
* @param closing Optional closing chars of generic type variable `Closing` to check if the given `value` contains.
@@ -70,10 +70,10 @@ export class Wrapper<
70
70
}
71
71
72
72
/**
73
- * Replaces the closing chars in a given text with a given replacement value at the end of the text.
73
+ * Replaces the closing chars in a given ` text` with a given replacement value at the end of the text.
74
74
* @param text The text of `string` type in which given `closing` characters are replaced by a given replacement value.
75
75
* @param closing The closing chars of the `string` to replace by a given replacement value at the end of the given `text`.
76
- * @param replaceValue Replacement value for the given closing characters in the given text.
76
+ * @param replaceValue Replacement value for the given ` closing` characters in the given ` text` .
77
77
* @returns The return value is the text of `string` type with a replaced closing chars by a given replacement value.
78
78
* @angularpackage
79
79
*/
@@ -88,10 +88,10 @@ export class Wrapper<
88
88
}
89
89
90
90
/**
91
- * Replaces the opening chars in a given text with a given replacement value at the end of the text.
91
+ * Replaces the opening chars in a given ` text` with a given replacement value at the end of the text.
92
92
* @param text The text of `string` type in which the given `opening` chars are replaced by a given replacement value.
93
93
* @param opening The opening chars of the `string` to replace by a given replacement value at the beginning of the given `text`.
94
- * @param replaceValue Replacement value for the opening characters in the given text.
94
+ * @param replaceValue Replacement value for the ` opening` characters in the given ` text` .
95
95
* @returns The return value is the text of `string` type with a replaced opening chars by a given replacement value.
96
96
* @angularpackage
97
97
*/
@@ -110,7 +110,7 @@ export class Wrapper<
110
110
* @param text The text of the `string` from which given opening and closing chars are removed.
111
111
* @param opening The opening chars of the `string` to be removed in the given `text`.
112
112
* @param closing The closing chars of the `string` to be removed in the given `text`.
113
- * @returns The return value is the text without the given opening and closing chars.
113
+ * @returns The return value is the text of string type without the given opening and closing chars.
114
114
* @angularpackage
115
115
*/
116
116
public static unwrap ( text : string , opening = '' , closing = '' ) : string {
@@ -138,8 +138,8 @@ export class Wrapper<
138
138
139
139
//#region instance public methods.
140
140
/**
141
- * Determines whether the provided `text` has the closing chars of the specified `Wrapper` object.
142
- * @param text The text of `string` to test for the existence of the closing chars at the end in it.
141
+ * Determines whether the provided `text` has the closing chars of the specified `Wrapper` object at the end .
142
+ * @param text The text of `string` to test for the existence of the closing chars at the end of it.
143
143
* @returns The return value is a `boolean` indicating whether the given `text` has the closing of the wrap.
144
144
* @angularpackage
145
145
*/
@@ -148,7 +148,7 @@ export class Wrapper<
148
148
}
149
149
150
150
/**
151
- * Checks if the provided `text` has the opening of a specified `Wrapper` object at the beginning of the text .
151
+ * Checks whether the provided `text` has the opening of a specified `Wrapper` object at the beginning.
152
152
* @param text The text of `string` to test for the existence of the opening chars at the beginning of it.
153
153
* @returns The return value is a `boolean` indicating whether the given `text` has the opening of the wrap.
154
154
* @angularpackage
0 commit comments