UNPKG
sugar-language
Version:
latest (2.0.6)
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.0
0.0.1
Language module for the Sugar Javascript utility library.
sugarjs.com
andrewplummer/Sugar
sugar-language
/
language
/
internal
/
zenkaku.js
10 lines
(7 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
ALL_HANKAKU_REG
=
require
(
'../var/ALL_HANKAKU_REG'
), convertCharacterWidth =
require
(
'./convertCharacterWidth'
);
function
zenkaku
(
str, mode
) {
return
convertCharacterWidth
(str, mode,
ALL_HANKAKU_REG
,
'zenkaku'
); }
module
.
exports
= zenkaku;