Sha256: b7a4a0dfea80d0d043748d6ac51075cec27ce7f3b0c22ff74fd29ed47a83a39f

Contents?: true

Size: 1.16 KB

Versions: 11

Compression:

Stored size: 1.16 KB

Contents

# js-string-escape

[![Build Status](https://travis-ci.org/joliss/js-string-escape.png?branch=master)](https://travis-ci.org/joliss/js-string-escape)

Escape any string to be a valid JavaScript string literal between double
quotes or single quotes.

## Installation

```
npm install js-string-escape
```

## Example

If you need to generate JavaScript output, this library will help you safely
put arbitrary data in JavaScript strings:

```js
jsStringEscape = require('js-string-escape')

console.log('"' + jsStringEscape('Quotes (\", \'), newlines (\n), etc.') + '"')
// => "Quotes (\", \'), newlines (\n), etc."
```

In other words, given any string `s`, the following invariants hold:

```js
eval('"' + jsStringEscape(s) + '"') === s
eval("'" + jsStringEscape(s) + "'") === s
```

These `eval` expressions are safe with untrusted strings `s`.

Non-strings will be cast to strings.

## Compliance

This library has been checked against [ECMAScript
5.1](http://www.ecma-international.org/ecma-262/5.1/#sec-7.8.4) and tested
against all Unicode code points.

Note that the returned string is not necessarily valid JSON, since JSON
disallows control characters, and `\'` is illegal in JSON.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
webpack_rails-2.0.1 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-2.0.0 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.3.1 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.3.0 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.2.2 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.2.1 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.2.0 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.1.1 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.1.0 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.0.1 lib/webpack_rails/node_modules/js-string-escape/README.md
webpack_rails-1.0.0 lib/webpack_rails/node_modules/js-string-escape/README.md