1.0.7 • Published 1 year ago

iso-to-hebrew v1.0.7

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

iso-to-hebrew

Conventional Commits

The iso-to-hebrew package is a simple utility for converting ISO 639-1 language codes to their corresponding Hebrew names.

Installation

To install the package, run the following commands:

NPM

npm install iso-to-hebrew

YARN

yarn add iso-to-hebrew

Usage

The package exposes a single function called isoToHebrew. This function takes two parameters:

  • isoCode (required): A string representing an ISO 639-1 language code.
  • defaultValue (optional): A string representing a default value to return in case the isoCode parameter is not a recognized ISO 639-1 language code. An empty string will be returned as default.

Example

Here is an example of how to use the isoToHebrew function:

import isoToHebrew from 'iso-to-hebrew';

console.log(isoToHebrew('en')); // 'אנגלית'
console.log(isoToHebrew('he')); // 'עברית'
console.log(isoToHebrew('zz')); // ''
console.log(isoToHebrew('zz', 'לא ידוע')); // 'לא ידוע'

// Dashes will be ignored
console.log(isoToHebrew('en-US')); // 'אנגלית'

Contributing

Thank you for considering contributing to our library! We welcome any and all contributions, whether it be bug fixes, new features, or documentation improvements.

Before making any contributions, please review our contribution guide for guidelines on how to contribute effectively and efficiently.

Known Issues

All the language names in our library were translated from English to Hebrew using Google Translate. While the most popular languages have been thoroughly tested and reviewed to ensure accuracy, it's possible that some less commonly used languages may result in incorrect translations. We welcome and encourage contributions from our users to help identify and correct any issues. If you notice any inaccuracies or find something that seems off, please don't hesitate to open a pull request or issue and we'll work to fix it as soon as possible.

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago