acsi-core 0.9.13 → 0.9.14
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.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +8 -8
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/sanitizeSrc.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
* @param url - The URL string to sanitize
|
|
4
4
|
* @returns The sanitized URL string, or null if the URL is invalid/dangerous
|
|
5
5
|
*/
|
|
6
|
-
declare const sanitizeSrc: (url: string) => string
|
|
6
|
+
declare const sanitizeSrc: (url: string) => string;
|
|
7
7
|
export default sanitizeSrc;
|