diff --git a/src/core/operations/EscapeString.mjs b/src/core/operations/EscapeString.mjs
deleted file mode 100644
index 3ddea181..00000000
--- a/src/core/operations/EscapeString.mjs
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
- * @author Vel0x [dalemy@microsoft.com]
- * @author n1474335 [n1474335@gmail.com]
- * @copyright Crown Copyright 2016
- * @license Apache-2.0
- */
-
-import Operation from "../Operation.mjs";
-import jsesc from "jsesc";
-
-/**
- * Escape string operation
- */
-class EscapeString extends Operation {
-
- /**
- * EscapeString constructor
- */
- constructor() {
- super();
-
- this.name = "Escape string";
- this.module = "Default";
- this.description = "Escapes special characters in a string so that they do not cause conflicts. For example, Don't stop me now
becomes Don\\'t stop me now
.
Supports the following escape sequences:
\\n
(Line feed/newline)\\r
(Carriage return)\\t
(Horizontal tab)\\b
(Backspace)\\f
(Form feed)\\xnn
(Hex, where n is 0-f)\\\\
(Backslash)\\'
(Single quote)\\"
(Double quote)\\unnnn
(Unicode character)\\u{nnnnnn}
(Unicode code point)