JSPM

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

micromark utility with symbols

Package Exports

  • micromark-util-symbol/codes
  • micromark-util-symbol/codes.js
  • micromark-util-symbol/constants
  • micromark-util-symbol/constants.js
  • micromark-util-symbol/types
  • micromark-util-symbol/types.js
  • micromark-util-symbol/values
  • micromark-util-symbol/values.js

Readme

micromark-util-symbol

Build Coverage Downloads Size Sponsors Backers Chat

micromark utility with symbols.

It’s useful to reference these by name instead of value while developing. micromark-build compiles them away for production code.

Contents

Install

npm:

npm install micromark-util-symbol

Use

import {codes} from 'micromark-util-symbol/codes'
import {constants} from 'micromark-util-symbol/constants'
import {types} from 'micromark-util-symbol/types'
import {values} from 'micromark-util-symbol/values'

console.log(codes.atSign) // 64
console.log(constants.characterReferenceNamedSizeMax) // 31
console.log(types.definitionDestinationRaw) // 'definitionDestinationRaw'
console.log(values.atSign) // '@'

API

This package has four entries in its export map: micromark-util-symbol/codes, micromark-util-symbol/constants, micromark-util-symbol/types, micromark-util-symbol/values.

Each module exports an identifier with the same name (for example, micromark-util-symbol/codes has codes), which is an object mapping strings to other values.

Take a peek at the code to learn more!

Security

See security.md in micromark/.github for how to submit a security report.

Contribute

See contributing.md in micromark/.github for ways to get started. See support.md for ways to get help.

This project has a code of conduct. By interacting with this repository, organisation, or community you agree to abide by its terms.

License

MIT © Titus Wormer