# wordnet-expandsynset

> Expand synset data of WordNet in minified form.

Latest version **0.1.2** (published 2018-01-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install wordnet-expandsynset
pnpm add wordnet-expandsynset
yarn add wordnet-expandsynset
bun add wordnet-expandsynset
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2018-01-15 |
| First published | 2018-01-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | wolfram77@gmail.com |
| Maintainers | wolfram77 |
| Keywords | wordnet, expand, synset |

## Links

- npm: https://www.npmjs.com/package/wordnet-expandsynset
- npm.io page: https://npm.io/package/wordnet-expandsynset

## Dependencies (3)

- [wordnet-expandword](https://npm.io/package/wordnet-expandword.md) ^0.1.2
- [wordnet-expandframe](https://npm.io/package/wordnet-expandframe.md) ^0.1.2
- [wordnet-expandpointer](https://npm.io/package/wordnet-expandpointer.md) ^0.1.2

## Recent versions

- 0.1.2 (latest) — 2018-01-15
- 0.1.1 — 2018-01-15
- 0.1.0 — 2018-01-15
- 0.0.8 — 2018-01-15
- 0.0.7 — 2018-01-15
- 0.0.6 — 2018-01-15
- 0.0.5 — 2018-01-15
- 0.0.4 — 2018-01-15
- 0.0.3 — 2018-01-15
- 0.0.2 — 2018-01-15
- 0.0.1 — 2018-01-15

## README

# wordnet-expandsynset

[![NPM](https://nodei.co/npm/wordnet-expandsynset.png)](https://nodei.co/npm/wordnet-expandsynset/)

Expand synset data of [WordNet] in minified form.
> Use [wordnet-minifysynset], if minification is needed.

```javascript
const expandSynset = require('wordnet-expandsynset');
// expandSynset(<synset(minified-form)>)

expandSynset({l: 43,
  s: 'v',
  w: [ { w: 'deflagrate', l: 0 } ],
  p:
   [ { o: '@', y: 2768426, p: 'v', s: 0, t: 0 },
     { o: '+', y: 13471590, p: 'n', s: 1, t: 1 } ],
  f: [ { f: 8, w: 0 }, { f: 11, w: 0 } ],
  g: 'cause to burn rapidly and with great intensity; "care must be exercised when this substance is to be deflagrated"'});
// { lex_filenum: 43,
//   ss_type: 'v',
//   w_cnt: 1,
//   words: [ { word: 'deflagrate', lex_id: 0 } ],
//   p_cnt: 2,
//   pointers:
//    [ { pointer_symbol: '@',
//        synset_offset: 2768426,
//        pos: 'v',
//        source: 0,
//        target: 0 },
//      { pointer_symbol: '+',
//        synset_offset: 13471590,
//        pos: 'n',
//        source: 1,
//        target: 1 } ],
//   f_cnt: 2,
//   frames: [ { f_num: 8, w_num: 0 }, { f_num: 11, w_num: 0 } ],
//   gloss: 'cause to burn rapidly and with great intensity; "care must be exercised when this substance is to be deflagrated"' }
```


[WordNet]: https://wordnet.princeton.edu/wordnet/
[wordnet-minifysynset]: https://www.npmjs.com/package/wordnet-minifysynset

---
_Source: https://npm.io/package/wordnet-expandsynset · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
