JSPM

decode-named-character-reference

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8702790
  • Score
    100M100P100Q252117F
  • License MIT

Decode named character references

Package Exports

  • decode-named-character-reference

Readme

decode-named-character-reference

Build Status Coverage Status Downloads Size

Decode named character references.

Contents

What is this?

A workaround for webpack.

When should I use this?

Never use this. Use parse-entities. It uses this.

Install

This package is ESM only. In Node.js (version 12.20+, 14.14+, or 16.0+), install with npm:

npm install decode-named-character-reference

In Deno with Skypack:

import {decodeNamedCharacterReference} from 'https://cdn.skypack.dev/decode-named-character-reference@1?dts'

In browsers with Skypack:

<script type="module">
  import {decodeNamedCharacterReference} from 'https://cdn.skypack.dev/decode-named-character-reference@1?min'
</script>

Use

import {decodeNamedCharacterReference} from 'decode-named-character-reference'

decodeNamedCharacterReference('amp') //=> '&'

API

This package exports the following identifier: decodeNamedCharacterReference. There is no default export.

decodeNamedCharacterReference(value)

Again, use parse-entities.

Types

This package is fully typed with TypeScript.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 12.20+, 14.14+, and 16.0+. It also works in Deno and modern browsers.

Security

This package is safe.

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer