@vcard/vcard4-meta
Version:
A vCard 4 module which provides data about the format.
49 lines (39 loc) • 1.11 kB
Markdown
@vcard/vcard4-meta
==================
[![CI Status][BUILD BADGE]][BUILD PAGE]
A [vCard 4](https://datatracker.ietf.org/doc/html/rfc6350) module which provides metadata about the format.
Install
-------
```sh-session
npm install @vcard/vcard4-meta
```
Usage
-----
```js
import {
EOL, // The EOL for vCards (CRLF).
FOLD_CONTINUATION_CHAR, // The fold continuaion character preferred by the vCard.js suite (U+0020).
FOLD_CONTINUATION_CHARS, // Valid fold continuation characters (horizontal tab and space).
HORIZONTAL_TAB, // (U+0009)
MAX_OCTETS_PER_LINE, // 75
SEPARATOR, // (U+003B)
SPACE // (U+0020)
} from '@vcard/vcard4-meta';
```
Building
--------
From the monorepo root:
```sh-session
npx lerna --scope @vcard/vcard4-meta run build
```
Testing
--------
From the monorepo root:
```sh-session
npm test
```
License
-------
The MIT License (Expat). See the [license file](LICENSE) for details.
[BUILD BADGE]: https://github.com/jbenner-radham/vcardjs/actions/workflows/ci.yaml/badge.svg
[BUILD PAGE]: https://github.com/jbenner-radham/vcardjs/actions/workflows/ci.yaml