Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tokuhirom/visualwidth-js


https://github.com/tokuhirom/visualwidth-js

Last synced: 18 days ago
JSON representation

Awesome Lists containing this project

README

        

VisualWidth
===========

This is a unicode character's visual width calculator for javascript.

This module supports node.js, too.

SYNOPSIS
--------

var vw = require('./visualwidth');
console.log(vw('あいうabc')); # => 9
console.log(vw.width('あいうabc')); # => 9
console.log(vw.truncate('ほう。hasegawaさん', 7, '...')); # => "ほう..."
console.log(vw.substr('あいうabc', 1, 4)); # => "いうab"
console.log(vw.substring('あいうabc', 2, 4)); # => "うa"
console.log(vw.indexOf('あいうabc', 'a')); # => 6
console.log(vw.lastIndexOf('あいうabc', 'a')); # => 6)