Socket
Socket
Sign inDemoInstall

@types/he

Package Overview
Dependencies
0
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/he


Version published
Maintainers
1
Created

Package description

What is @types/he?

@types/he provides TypeScript type definitions for the 'he' library, which is used for encoding and decoding HTML entities.

What are @types/he's main functionalities?

Encode HTML entities

This feature allows you to encode special characters in a string into their corresponding HTML entities. For example, the ampersand '&' is encoded as '&'.

const he = require('he');
const encoded = he.encode('Hello & World');
console.log(encoded); // Output: 'Hello & World'

Decode HTML entities

This feature allows you to decode HTML entities back into their original characters. For example, '&' is decoded back to '&'.

const he = require('he');
const decoded = he.decode('Hello & World');
console.log(decoded); // Output: 'Hello & World'

Encode HTML entities with custom options

This feature allows you to encode HTML entities with custom options, such as using named references for entities.

const he = require('he');
const encoded = he.encode('Hello & World', { 'useNamedReferences': true });
console.log(encoded); // Output: 'Hello & World'

Decode HTML entities with custom options

This feature allows you to decode HTML entities with custom options, such as treating the input as an attribute value.

const he = require('he');
const decoded = he.decode('Hello & World', { 'isAttributeValue': true });
console.log(decoded); // Output: 'Hello & World'

Other packages similar to @types/he

Readme

Source

Installation

npm install --save @types/he

Summary

This package contains type definitions for he (https://github.com/mathiasbynens/he).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/he.

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by Simon Edwards, and Robin Tregaskis.

FAQs

Last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc