diacritics-transliterator

0.3.0 • Public • Published

node-diacritics-transliterator

Build Status Test Coverage Greenkeeper

Diacritic transliteration tool using the diacritics.io API

Installation

$ npm install diacritics-transliterator

Module

The module exports an object with the following functions:

replace()

This function replaces a placeholder inside a string with an array of equivalent diacritics and their mappings. You can use it e.g. to create a regular expression.

Parameters:

input

Type: string

A string of JavaScript code.

options

Type: object
Optional: true

An object of options:

Name Type Default Description
placeholder string '// <% diacritics %>' The placeholder that will be replaced with an array of equivalent diacritics and their mappings
type string 'const' The variable type
name string 'diacritics' The variable name

Example:

const Diacritic = require('diacritics-transliterator');
 
const testString = `
const x = "Diacritics will be inserted below";
// <% diacritics %>
`;
 
Diacritic.replace(testString).then(response => {
  console.log(response);
}, msg => {
  throw new Error(`Failed: ${msg}`);
});

Package Sidebar

Install

npm i diacritics-transliterator

Weekly Downloads

0

Version

0.3.0

License

MIT

Unpacked Size

16.9 kB

Total Files

17

Last publish

Collaborators

  • julmot
  • mottie