@types/escape-html
TypeScript definitions for escape-html
Last updated 10 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/escape-html 
SYNC missed versions from official npm registry.

Installation

npm install --save @types/escape-html

Summary

This package contains type definitions for escape-html (https://github.com/component/escape-html).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/escape-html.

index.d.ts

// Type definitions for escape-html 1.0
// Project: https://github.com/component/escape-html
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/**
 * Escape string for use in HTML
 */

/**
 * 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 (`'`).
 */
declare function escapeHTML(text?: string | null): string;

export = escapeHTML;

Additional Details

  • Last updated: Thu, 14 Apr 2022 17:01:30 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Piotr Błażejewicz.

Current Tags

  • 1.0.2                                ...           latest (4 years ago)
  • 0.0.20                                ...           ts2.0 (9 years ago)
  • 0.0.20                                ...           ts2.1 (9 years ago)
  • 0.0.20                                ...           ts2.2 (9 years ago)
  • 0.0.20                                ...           ts2.3 (9 years ago)
  • 0.0.20                                ...           ts2.4 (9 years ago)
  • 0.0.20                                ...           ts2.5 (9 years ago)
  • 0.0.20                                ...           ts2.6 (9 years ago)
  • 0.0.20                                ...           ts2.7 (9 years ago)
  • 0.0.20                                ...           ts2.8 (9 years ago)
  • 1.0.0                                ...           ts2.9 (6 years ago)
  • 1.0.0                                ...           ts3.0 (6 years ago)
  • 1.0.0                                ...           ts3.1 (6 years ago)
  • 1.0.0                                ...           ts3.2 (6 years ago)
  • 1.0.0                                ...           ts3.3 (6 years ago)
  • 1.0.0                                ...           ts3.4 (6 years ago)
  • 1.0.1                                ...           ts3.5 (5 years ago)
  • 1.0.1                                ...           ts3.6 (5 years ago)
  • 1.0.1                                ...           ts3.7 (5 years ago)
  • 1.0.1                                ...           ts3.8 (5 years ago)
  • 1.0.2                                ...           ts3.9 (4 years ago)
  • 1.0.2                                ...           ts4.0 (4 years ago)
  • 1.0.2                                ...           ts4.1 (4 years ago)
  • 1.0.2                                ...           ts4.2 (4 years ago)
  • 1.0.2                                ...           ts4.3 (4 years ago)
  • 1.0.2                                ...           ts4.4 (4 years ago)
  • 1.0.2                                ...           ts4.5 (4 years ago)
  • 1.0.2                                ...           ts4.6 (4 years ago)
  • 1.0.2                                ...           ts4.7 (4 years ago)
  • 1.0.2                                ...           ts4.8 (4 years ago)
  • 1.0.2                                ...           ts4.9 (4 years ago)

15 Versions

  • 1.0.2                                ...           4 years ago
  • 1.0.1                                ...           5 years ago
  • 1.0.0                                ...           6 years ago
  • 0.0.20                                ...           9 years ago
  • 0.0.19                                ...           10 years ago
  • 0.0.18                                ...           10 years ago
  • 0.0.17-alpha                                ...           10 years ago
  • 0.0.16-alpha                                ...           10 years ago
  • 0.0.15-alpha                                ...           10 years ago
  • 0.0.14-alpha                                ...           10 years ago
  • 0.0.13-alpha                                ...           10 years ago
  • 0.0.12-alpha                                ...           10 years ago
  • 0.0.11-alpha                                ...           10 years ago
  • 0.0.6-alpha                                ...           10 years ago
  • 0.0.5-alpha                                ...           10 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org | Home |