UNPKG
jszhuyin
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
Smart Chinese Zhuyin Input Method in JavaScript.
github.com/timdream/jszhuyin
timdream/jszhuyin
jszhuyin
/
lib
/
main.js
10 lines
(6 loc)
•
232 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
const
fs =
require
(
'fs'
);
var
mainExports =
require
(
'./jszhuyin.js'
); mainExports.
JSZhuyin
.
prototype
.
DATA_ARRAY_BUFFER
= fs.
readFileSync
(__dirname +
'/../data/database.data'
).
buffer
;
module
.
exports
= mainExports;