New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

unicount

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unicount

unicode position conversion

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Unicode position conversion

This is a super simple no-deps conversion tool to convert between unicode codepoint offsets and JS string offsets.

This module exposes 3 methods:

uniCount(s: string) => number

Count the number of unicode codepoints inside a string. This is the equivalent of string.length, but this method returns a string's unicode length instead of its UCS2 length. (Who would ever want that?)

const {uniCount} = require('unicount')

console.log('💃123'.length) // 5! Oh no!
console.log(uniCount('💃123')) // 4. Much better.
strPosToUni(s: string, strOffset?: number) => number

Convert from a JS string position to a unicode position.

For example, given the JS string '💃123', JS string position 2 is right after the 💃. Since that emoji is a single code point wide, the unicode equivalent of that position is 1.

const {strPosToUni} = require('unicount')

console.log(strPosToUni('💃123', 2)) // 1

The offset is optional. If missing, this method has the same behaviour as uniCount(str), for backwards compatibility.

uniToStrPos(s: string, uniOffset: number) => number

Convert a unicode codepoint position to a string offset position

This function does the inverse of strPosToUni. Given a string s and a number of codepoints uniOffset, this returns the string position right after specified number of unicode codepoints.

const {uniToStrPos} = require('unicount')

uniToStrPos.uniToStrPos('💃123', 1) // 2

LICENSE

Copyright 2019 Joseph Gentle

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Keywords

FAQs

Package last updated on 31 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc