Convert raw escape sequences to their respective characters (undo String.raw).
npm install unrawunraw``ts`
unraw("\\'\\t\\u{1f601}\\'"); // -> "' š'"
unraw is a small module that converts raw strings to parsed strings in the sameString.raw
manner as the standard JavaScript escaping engine. In essence, it is the exact
opposite of.
Most of the time, you probably don't need this library unless you're working
directly with raw strings and you need a way to get them back to normal strings.
Maybe the most signicant use case is when building
template literal tags;
you can use the .raw property of the passed string array to access the raw
strings, but then you may want to still return normal strings after processing.
The module is also useful for parsing text files written with escape sequences,
although keep in mind that the JavaScript flavor of escape sequences may differ
from the flavor used in an input file.
unraw is a UMD module, so it can be used in Node or on the web. Typings are
included for TypeScript as well.
unraw is hosted on npm, so you can install
with:
`bash`
npm i unraw
To use in code:
`js
import unraw from "unraw";
unraw("\\n");
`
If you want to access error messages:
`js
import {unraw, errorMessages, ErrorType} from "unraw";
unraw("\\n");
errorMessages.get(ErrorType.MalformedUnicode);
`
You can embed it (minified) on a webpage with
RequireJS. The module is available on
UNPKG at https://unpkg.com/unraw:
`html`
_Note_: Importing via the 'bare' url (https://unpkg.com/unraw) is not
supported as it breaks references to other required files.
Usage is simple - the library exports a default function, unraw. The firstunraw
argument to is the string to parse, and the second is an optional flagfalse
to allow or disallow octal escapes, which are deprecated (defaults to, so the default behavior is to throw an error when octal sequences
are encountered).
`js`
unraw("\\t\\tThis is indented.");
// => " This is indented."
The library attempts to mimic the behaviour of standard JavaScript strings as
closely as possible. This means that invalid escape sequences will throw
SyntaxErrors and that every escape sequence that is valid in a normal stringunraw
should be valid when passed to .
In some ways this is similar to the behavior of JSON.parse.
You can always expect the outcome of calling unraw on a raw string to be
exactly the same as if that string were not raw in the first place:
`jsInvalid: \u23 // Throws a SyntaxErrorInvalid: \u23
unraw(String.raw) // Throws a SyntaxError
Valid: \u0041 // => Valid: AValid: \u0041
unraw(String.raw) // => Valid: A
Valid: \A // => Valid: AValid: \A
unraw(String.raw) // => Valid: A
Valid: \\ // => Valid: \Valid: \\
unraw(String.raw) // => Valid: \
Valid: \x42 // => Valid: BValid: \x42
unraw(String.raw) // => Valid: B
Octal: \102 // => Throws a SyntaxErrorOctal: \102
unraw(String.raw) // => Throws a SyntaxErrorOctal: \102
unraw(String.raw, true) // => Octal: B`
If desired, you can access the possible error messages to help identify errors:
`ts
import {unraw, ErrorType, errorMessages} from "unraw";
try {
unraw("\\u25");
} catch (err) {
if (err.message === errorMessages.get(ErrorType.MalformedUnicode)) {
console.error("String had an invalid Unicode escape sequence.");
}
}
`
The full list of error message names available through the ErrorType enum
(exposed as a normal object in JavaScript).
Found a bug? Please,
submit it here.
Pull requests are always welcome, although to increase your chances of your
contribution being accepted, opening an issue and linking to it is always a
good idea.
Pull requests will not be merged unless the Azure Pipelines build succeeds.
This means that all checks must pass and code must be free of lint errors. To
quickly confirm that it will, just run:
`bash`
npm run check
This checks your formatting, tests, and for TypeScript compiler errors. If the
task doesn't fail, you should be good to go.
For your convenience, some other tasks are also provided in the package.json:
- npm run build - Compiles TypeScript code to JavaScriptnpm run minify
- - Generate minified JavaScript files from compiled filesnpm run test
- - Quickly run tests using TypeScript code without compilingnpm run testWithCoverage
- - Run tests and generate coverage reportnpm run lint
- - Check code for linting errorsnpm run check
- - Check to ensure code will pass Pipelines checks (see above)npm run format` - Format code using Prettier
-