https://github.com/hexarc-software/romanify-russian-names
Romanization of russian names
https://github.com/hexarc-software/romanify-russian-names
Last synced: 9 months ago
JSON representation
Romanization of russian names
- Host: GitHub
- URL: https://github.com/hexarc-software/romanify-russian-names
- Owner: hexarc-software
- Created: 2020-07-19T06:00:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-16T05:36:28.000Z (about 5 years ago)
- Last Synced: 2025-09-05T19:15:38.881Z (10 months ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Romanization of russian names
===========
[](https://www.npmjs.org/package/@hexarc/romanify-russian-names)
[](http://badges.mit-license.org)
[](https://npmjs.org/package/@hexarc/romanify-russian-names)
[](https://npmjs.org/package/@hexarc/romanify-russian-names)
This library helps with transliterating russian cyrillic names into the latin script.
Supported transliteration methods:
- MID ORDER #4271
## Setup
Install with npm:
```sh
npm install @hexarc/romanify-russian-names
```
Using with node.js (ES6 syntax):
```js
import { romanify } from "@hexarc/romanify-russian-names";
```
Or using the CommonJS module syntax:
```js
const { romanify } = require("@hexarch/romanify-russian-names");
```
## Usage
```js
let romanName = romanify("Василий Петрович Долговязов");
console.log(romanName); //Vasilii Petrovich Dolgoviazov
```
## License
[MIT](LICENSE)