Commit e237377
authored
fix: Removed the unused doUnesc param in the unsafe function (#243)
The function `unsafe` have a parameter that is not used anywhere :
`doUnesc`.
In this PR, this parameter is removed, also making the function
declaration syntaxically closer to `safe`.
Before :
`const unsafe = (val, doUnesc) => {`
Now :
`const unsafe = val => {`1 parent 29caa7c commit e237377
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
228 | | - | |
| 228 | + | |
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
| |||
0 commit comments