mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
This implementation is for making `import * as someModule from 'someModule'` is available. But this usage is note appropiate.
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import wcwidth = require('wcwidth');
|
|
|
|
const length1 = wcwidth('한'); // => 2
|
|
|
|
const length2 = wcwidth('한글'); // => 4
|