Package Exports
- stemmer_es
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (stemmer_es) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Stemmer_es
Javascript Stemmer for Spanish - Lexemador Javascript del Español
Stemmer_es is an implementation in javascript of the Porter algorithm for the Spanish language. It is based on this article: http://snowball.tartarus.org/algorithms/spanish/stemmer.html
Stemmer_es es una implementación en javascript del algoritmo de Porter para el idioma Español. Está basado en este artículo: http://snowball.tartarus.org/algorithms/spanish/stemmer.html
Install - Instalación
npm install stemmer_esExample - Ejemplo
Browser
<script src="/dist/stemmer_es.min.js"></script>
<script type="text/javascript">
var stem = Stemmer_es.stem('Asombrosamente');
// stem = asombr
</script>Node
const stemmer_es = require('stemmer_es');
var stem = stemmer_es.stem('Asombrosamente');
//stem = asombr