We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ec809 commit 9df5d38Copy full SHA for 9df5d38
1 file changed
src/services/wafV2WebAcl/utils.ts
@@ -29,17 +29,13 @@ export const mapTextTransformations = (transforms: TextTransformations = []) =>
29
export const formatSearchString = (
30
searchString: SearchString = ''
31
): string => {
32
- console.log('we got the search string')
33
- console.log(typeof searchString)
34
if (searchString instanceof Blob) {
35
return 'blob'
36
}
37
if (searchString instanceof Uint8Array) {
38
- console.log('search string is a array')
39
return Buffer.from(searchString).toString()
40
41
if (searchString instanceof Buffer) {
42
- console.log('search string is a buffer')
43
return searchString.toString()
44
45
0 commit comments