forked from shabados/gurmukhi-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
27 lines (26 loc) · 820 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const toUnicode = require( './lib/toUnicode' )
const toAscii = require( './lib/toAscii' )
const firstLetters = require( './lib/firstLetters' )
const toEnglish = require( './lib/toEnglish' )
const toShahmukhi = require( './lib/toShahmukhi' )
const toHindi = require( './lib/toHindi' )
const isGurmukhi = require( './lib/isGurmukhi' )
const stripAccents = require( './lib/stripAccents' )
const stripVishraams = require( './lib/stripVishraams' )
const stripEndings = require( './lib/stripEndings' )
const toSyllabicSymbols = require( './lib/toSyllabicSymbols' )
const countSyllables = require( './lib/countSyllables' )
module.exports = {
toAscii,
toUnicode,
firstLetters,
toEnglish,
toShahmukhi,
toHindi,
isGurmukhi,
stripAccents,
stripVishraams,
stripEndings,
toSyllabicSymbols,
countSyllables,
}