@inntechcorp/it-design 2.0.221 → 2.0.223

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -132,6 +132,19 @@ declare function Base64Decode(encoded: string): string;
132
132
  * add any meaning to the query.
133
133
  *
134
134
  */
135
+ /**
136
+ *
137
+ * ### toKebabCase
138
+ *
139
+ * First, removes special characters from the provided string value and converts it to lowercase.
140
+ *
141
+ * @param value The input string.
142
+ * @param removeStopWords Removes stop words if true.
143
+ * @param removeNumbers Removes numbers if true.
144
+ *
145
+ * @returns If `toKebabCase("bu 123 bir örnek 456 cümle", true, true)` is provided, it will return `"ornek-cumle"`.
146
+ *
147
+ */
135
148
  declare function toKebabCase(value: string, removeStopWords?: boolean, removeNumbers?: boolean): string;
136
149
 
137
150
  type Nullable<T> = T | null;