Removes need for runParseEscapedString

- Fixes examples
- Actually makes it work
This commit is contained in:
Matt C 2017-08-04 15:54:00 +01:00
parent 3186335f47
commit 9161cc693d
2 changed files with 20 additions and 24 deletions

View file

@ -3254,14 +3254,14 @@ const OperationConfig = {
},
"Escape String": {
description: "Escapes a string so that it can be embedded in another. For example, <code>Don't stop me now</code> becomes <code>Don\\'t stop me now</code>.",
run: StrUtils.run_escape,
run: StrUtils.runEscape,
inputType: "string",
outputType: "string",
args: []
},
"Unescape String": {
description: "Unescapes a string that was embedded inside another so that it can be used in it's own right. For example, <code>Don\\'t stop me now</code> becomes <code>Don't stop me now</code>.",
run: StrUtils.run_unescape,
run: StrUtils.runUnescape,
inputType: "string",
outputType: "string",
args: []