Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 => {`
- Loading branch information