JSPM

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

Helper function that checks whether two words have the same stem

Package Exports

  • same-stem
  • same-stem/index.js

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 (same-stem) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

same-stem

same-stem is a helper package that contains one function, which compares 2 words of the Polish Language and checks whether they have the same stem.

Usage

import sameStem from 'same-stem';

const word1 = 'jabłko';
const word2 = 'jabłkiem';

const result = sameStem(word1, word2);
console.log(result); // true