node-palladius
[![NPM version][npm-image]][npm-url]
[![Code Climate][codeclimat-image]][codeclimat-url]
[![Build Status][travis-image]][travis-url]
[![Coveralls Status][coveralls-image]][coveralls-url]
[![Dependency Status][depstat-image]][depstat-url]
> The Palladius system for transcribing Chinese characters into the Cyrillic alphabet
Install
npm install --save node-palladius
Requires String.startsWith(), String.endsWith() and Array.includes().
Usage
``
js
const palladius = require('node-palladius');
palladius('chen boda');
// returns:
[
{chen: 'чэнь'},
{ ' ': ' ' },
{ bo: 'бо' },
{ da: 'да' }
]
`
API
$3
#### input
Required
Type: String`
Input is any Pinyin words.
License
MIT ©
Aleksander Terekhov
[npm-url]: https://npmjs.org/package/node-palladius
[npm-image]: https://img.shields.io/npm/v/node-palladius.svg?style=flat-square
[travis-url]: https://travis-ci.org/terales/node-palladius
[travis-image]: https://img.shields.io/travis/terales/node-palladius.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/terales/node-palladius
[coveralls-image]: https://img.shields.io/coveralls/terales/node-palladius.svg?style=flat-square
[depstat-url]: https://david-dm.org/terales/node-palladius
[depstat-image]: https://david-dm.org/terales/node-palladius.svg?style=flat-square
[codeclimat-url]: https://codeclimate.com/github/terales/node-palladius
[codeclimat-image]: https://img.shields.io/codeclimate/github/terales/node-palladius.svg?style=flat-square