0.1.2 • Published 6 years ago

wordnet-minifysynset v0.1.2

Weekly downloads
2
License
MIT
Repository
-
Last release
6 years ago

wordnet-minifysynset

NPM

Minify synset data of WordNet in expanded form.

Use wordnet-expandsynset, if expansion is needed.

const minifySynset = require('wordnet-minifysynset');
// minifySynset(<synset(expanded-form)>)

minifySynset({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"'});
// { 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"' }
0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago