escape-html

WebJar for escape-html

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

escape-html
Last Version

Last Version

1.0.3
Release Date

Release Date

Type

Type

jar
Description

Description

escape-html
WebJar for escape-html
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/component/escape-html

Download escape-html

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/escape-html/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>escape-html</artifactId>
    <version>1.0.3</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/escape-html/
implementation 'org.webjars.npm:escape-html:1.0.3'
// https://jarcasting.com/artifacts/org.webjars.npm/escape-html/
implementation ("org.webjars.npm:escape-html:1.0.3")
'org.webjars.npm:escape-html:jar:1.0.3'
<dependency org="org.webjars.npm" name="escape-html" rev="1.0.3">
  <artifact name="escape-html" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='escape-html', version='1.0.3')
)
libraryDependencies += "org.webjars.npm" % "escape-html" % "1.0.3"
[org.webjars.npm/escape-html "1.0.3"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

escape-html

NPM Version NPM Downloads Build Status Test Coverage

Escape string for use in HTML

This module exports a single function, escapeHtml, that is used to escape a string of content such that it can be interpolated in HTML content.

Installation

This is a Node.js module available through the npm registry. Installation is done using the npm install command:

$ npm install escape-html

API

escapeHtml(string)

Escape special characters in the given string of text, such that it can be interpolated in HTML content.

This function will escape the following characters: ", ', &, <, and >.

Note that the escaped value is only suitable for being interpolated into HTML as the text content of elements in which the tag does not have different escaping mechanisms (it cannot be placed inside <style> or <script>, for example, as those content bodies are not HTML, but CSS and JavaScript, respectively; these are known as "raw text elements" in the HTML standard).

Note when using the escaped value within a tag, it is only suitable as the value of an attribute, where the value is quoted with either a double quote character (") or a single quote character (').

Example

The escapeHtml function is designed to accept a string input of text and return an escaped value to interpolate into HTML.

var escapeHtml = require('escape-html')

// example values
var desc = 'I <b>think</b> this is good.'
var fullName = 'John "Johnny" Smith'

// example passing in text into a html attribute
console.dir('<input name="full_name" value="' + escapeHtml(fullName) + '">')
// -> '<input name="full_name" value="John &quot;Johnny&quot; Smith">'

// example passing in text in html body
console.dir('<textarea name="desc">' + escapeHtml(desc) + '</textarea>')
// -> '<textarea name="desc">I &lt;b&gt;think&lt;/b&gt; this is good.</textarea>'

Benchmark

$ npm run-script bench

> [email protected] bench nodejs-escape-html
> node benchmark/index.js


  [email protected]
  [email protected]
  [email protected]
  [email protected]
  [email protected]
  [email protected]
  modules@11
  [email protected]

  1 test completed.
  2 tests completed.
  3 tests completed.

  no special characters    x 19,435,271 ops/sec ±0.85% (187 runs sampled)
  single special character x  6,132,421 ops/sec ±0.67% (194 runs sampled)
  many special characters  x  3,175,826 ops/sec ±0.65% (193 runs sampled)

License

MIT

org.webjars.npm

Components

modular components for component

Versions

Version
1.0.3
1.0.1