@types/jsesc
- Version 3.0.3
- Published
- 17.4 kB
- No dependencies
- MIT license
Install
npm i @types/jsesc
yarn add @types/jsesc
pnpm add @types/jsesc
Overview
TypeScript definitions for jsesc
Index
Variables
variable version
const version: string;
A string representing the semantic version number.
Functions
function jsesc
jsesc: typeof jsesc;
This function takes a value and returns an escaped version of the value where any characters that are not printable ASCII symbols are escaped using the shortest possible (but valid) escape sequences for use in JavaScript strings. The first supported value type is strings. Instead of a string, the value can also be an array, an object, a map, a set, or a buffer. In such cases, jsesc returns a stringified version of the value where any characters that are not printable ASCII symbols are escaped in the same way.
Example 1
import jsesc = require('jsesc');
jsesc('Ich ♥ Bücher'); // → 'Ich \u2665 B\xFCcher'
jsesc('foo 𝌆 bar'); // → 'foo \uD834\uDF06 bar'
// Escaping an array jsesc([ 'Ich ♥ Bücher', 'foo 𝌆 bar' ]); // → '['Ich \u2665 B\xFCcher','foo \uD834\uDF06 bar']'
// Escaping an object jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }); // → '{'Ich \u2665 B\xFCcher':'foo \uD834\uDF06 bar'}'
Interfaces
interface Opts
interface Opts {}
property compact
compact?: boolean | undefined;
When enabled, the output for arrays and objects is as compact as possible; it’s not formatted nicely.
true (enabled)
Example 1
import jsesc = require('jsesc');
jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }, { compact: true // this is the default }); // → '{'Ich \u2665 B\xFCcher':'foo \uD834\uDF06 bar'}'
jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }, { compact: false }); // → '{\n\t'Ich \u2665 B\xFCcher': 'foo \uD834\uDF06 bar'\n}'
jsesc([ 'Ich ♥ Bücher', 'foo 𝌆 bar' ], { compact: false }); // → '[\n\t'Ich \u2665 B\xFCcher',\n\t'foo \uD834\uDF06 bar'\n]'
property es6
es6?: boolean | undefined;
When enabled, any astral Unicode symbols in the input are escaped using [ECMAScript 6 Unicode code point escape sequences](https://mathiasbynens.be/notes/javascript-escapes#unicode-code-point) instead of using separate escape sequences for each surrogate half. If backwards compatibility with ES5 environments is a concern, don’t enable this setting. If the
json
setting is enabled, the value for thees6
setting is ignored (as if it wasfalse
).false (disabled)
Example 1
import jsesc = require('jsesc');
// By default, the
es6
option is disabled: jsesc('foo 𝌆 bar 💩 baz'); // → 'foo \uD834\uDF06 bar \uD83D\uDCA9 baz'// To explicitly disable it: jsesc('foo 𝌆 bar 💩 baz', { es6: false }); // → 'foo \uD834\uDF06 bar \uD83D\uDCA9 baz'
// To enable it: jsesc('foo 𝌆 bar 💩 baz', { es6: true }); // → 'foo \u{1D306} bar \u{1F4A9} baz'
property escapeEverything
escapeEverything?: boolean | undefined;
When enabled, all the symbols in the output are escaped — even printable ASCII symbols. This setting also affects the output for string literals within arrays and objects.
false (disabled)
Example 1
import jsesc = require('jsesc');
jsesc('lolwat"foo'bar', { escapeEverything: true }); // → '\x6C\x6F\x6C\x77\x61\x74\"\x66\x6F\x6F\'\x62\x61\x72' // → "\x6C\x6F\x6C\x77\x61\x74\"\x66\x6F\x6F\'\x62\x61\x72"
property indent
indent?: string | undefined;
When the
compact
setting is disabled (false
), the value of theindent
option is used to format the output for arrays and objects. This setting has no effect on the output for strings.'\t'
Example 1
import jsesc = require('jsesc');
jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }, { compact: false, indent: '\t' // this is the default }); // → '{\n\t'Ich \u2665 B\xFCcher': 'foo \uD834\uDF06 bar'\n}'
jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }, { compact: false, indent: ' ' }); // → '{\n 'Ich \u2665 B\xFCcher': 'foo \uD834\uDF06 bar'\n}'
jsesc([ 'Ich ♥ Bücher', 'foo 𝌆 bar' ], { compact: false, indent: ' ' }); // → '[\n 'Ich \u2665 B\xFCcher',\n\ t'foo \uD834\uDF06 bar'\n]'
property indentLevel
indentLevel?: number | undefined;
It represents the current indentation level, i.e. the number of times the value of the
indent
option is repeated.0
Example 1
import jsesc = require('jsesc');
jsesc(['a', 'b', 'c'], { compact: false, indentLevel: 1 }); // → '[\n\t\t'a',\n\t\t'b',\n\t\t'c'\n\t]'
jsesc(['a', 'b', 'c'], { compact: false, indentLevel: 2 }); // → '[\n\t\t\t'a',\n\t\t\t'b',\n\t\t\t'c'\n\t\t]'
property isScriptContext
isScriptContext?: boolean | undefined;
When enabled, occurrences of [
</script
and</style
](https://mathiasbynens.be/notes/etago) in the output are escaped as<\/script
and<\/style
, and [<!--
](https://mathiasbynens.be/notes/etago#comment-8) is escaped as\x3C!--
(or\u003C!--
when thejson
option is enabled). This setting is useful when jsesc’s output ends up as part of a<script>
or<style>
element in an HTML document.false (disabled)
Example 1
import jsesc = require('jsesc');
jsesc('foobar', { isScriptContext: true }); // → 'foo<\/script>bar'
property json
json?: boolean | undefined;
When enabled, the output is valid JSON. [Hexadecimal character escape sequences](https://mathiasbynens.be/notes/javascript-escapes#hexadecimal) and [the
\v
or\0
escape sequences](https://mathiasbynens.be/notes/javascript-escapes#single) are not used. Settingjson: true
impliesquotes: 'double', wrap: true, es6: false
, although these values can still be overridden if needed — but in such cases, the output won’t be valid JSON anymore.**Note:** Using this option on objects or arrays that contain non-string values relies on
JSON.stringify()
. For legacy environments like IE ≤ 7, use [aJSON
polyfill](http://bestiejs.github.io/json3/).false (disabled)
Example 1
import jsesc = require('jsesc');
jsesc('foo\x00bar\xFF\uFFFDbaz', { json: true }); // → '"foo\u0000bar\u00FF\uFFFDbaz"'
jsesc({ 'foo\x00bar\xFF\uFFFDbaz': 'foo\x00bar\xFF\uFFFDbaz' }, { json: true }); // → '{"foo\u0000bar\u00FF\uFFFDbaz":"foo\u0000bar\u00FF\uFFFDbaz"}'
jsesc([ 'foo\x00bar\xFF\uFFFDbaz', 'foo\x00bar\xFF\uFFFDbaz' ], { json: true }); // → '["foo\u0000bar\u00FF\uFFFDbaz","foo\u0000bar\u00FF\uFFFDbaz"]'
// Values that are acceptable in JSON but aren’t strings, arrays, or object // literals can’t be escaped, so they’ll just be preserved: jsesc([ 'foo\x00bar', [1, '©', { 'foo': true, 'qux': null }], 42 ], { json: true }); // → '["foo\u0000bar",[1,"\u00A9",{"foo":true,"qux":null}],42]' // Values that aren’t allowed in JSON are run through
JSON.stringify()
: jsesc([ undefined, -Infinity ], { json: true }); // → '[null,null]'
property lowercaseHex
lowercaseHex?: boolean | undefined;
When enabled, any alphabetical hexadecimal digits in escape sequences as well as any hexadecimal integer literals (see the
numbers
option) in the output are in lowercase.false (disabled)
Example 1
import jsesc = require('jsesc');
jsesc('Ich ♥ Bücher', { lowercaseHex: true }); // → 'Ich \u2665 B\xfccher' // ^^
jsesc(42, { numbers: 'hexadecimal', lowercaseHex: true }); // → '0x2a' // ^^
property minimal
minimal?: boolean | undefined;
When enabled, only a limited set of symbols in the output are escaped:
- U+0000
\0
- U+0008\b
- U+0009\t
- U+000A\n
- U+000C\f
- U+000D\r
- U+005C\\
- U+2028\u2028
- U+2029\u2029
- whatever symbol is being used for wrapping string literals (based on thequotes
option) - [lone surrogates](https://esdiscuss.org/topic/code-points-vs-unicode-scalar-values#content-14)Note: with this option enabled, jsesc output is no longer guaranteed to be ASCII-safe.
false (disabled)
Example 1
import jsesc = require('jsesc');
jsesc('foo\u2029bar\nbaz©qux𝌆flops', { minimal: false }); // → 'foo\u2029bar\nbaz©qux𝌆flops'
property numbers
numbers?: 'binary' | 'octal' | 'decimal' | 'hexadecimal' | undefined;
The value
'decimal'
for thenumbers
option means that any numeric values are represented using decimal integer literals. Other valid options arebinary
,octal
, andhexadecimal
, which result in binary integer literals, octal integer literals, and hexadecimal integer literals, respectively.'decimal'
Example 1
import jsesc = require('jsesc');
jsesc(42, { numbers: 'binary' }); // → '0b101010'
jsesc(42, { numbers: 'octal' }); // → '0o52'
jsesc(42, { numbers: 'decimal' }); // → '42'
jsesc(42, { numbers: 'hexadecimal' }); // → '0x2A'
property quotes
quotes?: 'single' | 'double' | 'backtick' | undefined;
The value
'single'
for thequotes
option means that any occurrences of'
in the input string are escaped as\'
, so that the output can be used in a string literal wrapped in single quotes. If you want to use the output as part of a string literal wrapped in double quotes, set thequotes
option to'double'
. If you want to use the output as part of a template literal (i.e. wrapped in backticks), set thequotes
option to'backtick'
.'single'
Example 1
import jsesc = require('jsesc');
jsesc('
Lorem
ipsum "dolor" sit 'amet' etc.'); // → 'Lorem ipsum "dolor" sit \'amet\' etc.'jsesc('
Lorem
ipsum "dolor" sit 'amet' etc.', { quotes: 'single' }); // → 'Lorem
ipsum "dolor" sit \'amet\' etc.' // → "Lorem
ipsum "dolor" sit \'amet\' etc."jsesc('
Lorem
ipsum "dolor" sit 'amet' etc.', { quotes: 'double' }); // → 'Lorem
ipsum \"dolor\" sit 'amet' etc.' // → "Lorem
ipsum \"dolor\" sit 'amet' etc."jsesc('
Lorem
ipsum "dolor" sit 'amet' etc.', { quotes: 'backtick' }); // → '\Lorem\\
ipsum "dolor" sit 'amet' etc.' // → "\Lorem\\
ipsum "dolor" sit 'amet' etc." // →\\\
Lorem\` ipsum "dolor" sit 'amet' etc.`// This setting also affects the output for arrays and objects: jsesc({ 'Ich ♥ Bücher': 'foo 𝌆 bar' }, { quotes: 'double' }); // → '{"Ich \u2665 B\xFCcher":"foo \uD834\uDF06 bar"}'
jsesc([ 'Ich ♥ Bücher', 'foo 𝌆 bar' ], { quotes: 'double' }); // → '["Ich \u2665 B\xFCcher","foo \uD834\uDF06 bar"]'
property wrap
wrap?: boolean | undefined;
When enabled, the output is a valid JavaScript string literal wrapped in quotes. The type of quotes can be specified through the
quotes
setting.false (disabled)
Example 1
import jsesc = require('jsesc');
jsesc('Lorem ipsum "dolor" sit 'amet' etc.', { quotes: 'single', wrap: true }); // → ''Lorem ipsum "dolor" sit \'amet\' etc.'' // → "'Lorem ipsum "dolor" sit \'amet\' etc.'"
jsesc('Lorem ipsum "dolor" sit 'amet' etc.', { quotes: 'double', wrap: true }); // → '"Lorem ipsum \"dolor\" sit 'amet' etc."' // → ""Lorem ipsum \"dolor\" sit 'amet' etc.""
Package Files (1)
Dependencies (0)
No dependencies.
Dev Dependencies (0)
No dev dependencies.
Peer Dependencies (0)
No peer dependencies.
Badge
To add a badge like this oneto your package's README, use the codes available below.
You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@types/jsesc
.
- Markdown[![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@types/jsesc)
- HTML<a href="https://www.jsdocs.io/package/@types/jsesc"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>
- Updated .
Package analyzed in 2738 ms. - Missing or incorrect documentation? Open an issue for this package.