foxts 5.0.0 → 5.0.1
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* A 200% faster join than the native `Array.prototype.join` for string arrays and string separator.
|
|
3
3
|
*/
|
|
4
|
-
declare function fastStringArrayJoin(arr: string[], sep: string): string;
|
|
4
|
+
declare function fastStringArrayJoin(arr: string[] | readonly string[], sep: string): string;
|
|
5
5
|
|
|
6
6
|
export { fastStringArrayJoin };
|