Socket
Socket
Sign inDemoInstall

html-entities-decoder

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    html-entities-decoder

decode all html entities


Version published
Weekly downloads
1.5K
increased by65.56%
Maintainers
1
Install size
100 kB
Created
Weekly downloads
 

Readme

Source

html-entities-decoder Version Number License download

npm install html-entities-decoder

decode all html entities

Examples

input : 1 © 2 "

ouput : 1 © 2 "

How to use

let decode = require('html-entities-decoder')
let input = '1 © 2 "'
let output = decode(input) // 1 © 2 "

or

import decode from 'html-entities-decoder';
let input = '1 © 2 "'
let output = decode(input) // 1 © 2 "

License

MIT

Thank You!!

Keywords

FAQs

Last updated on 13 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc