Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
echodict
/
readest
like
0
Dataset card
Files
Files and versions
xet
Community
main
readest
/
apps
/
readest-app
/
src
/
utils
/
sanitize.ts
dlxj
init
4e1096a
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
114 Bytes
export
const
sanitizeString
= (
str?:
string
) => {
if
(!str)
return
str;
return
str.
replace
(
/\u0000/g
,
''
);
};