Socket
Socket
Sign inDemoInstall

obtain-unicode

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    obtain-unicode

implementation of convert a DOMString to a sequence of Unicode characters at http://www.w3.org/TR/WebIDL/#dfn-obtain-unicode and shim for String.fromCodePoint()


Version published
Maintainers
1
Install size
7.15 kB
Created

Readme

Source

Isomorphic Unicode Codepoint to/from String converter

about

implementation of Obtain Unicode Algorithm from DOMString at http://www.w3.org/TR/WebIDL/#dfn-obtain-unicode

also polyfill of String.fromCodePoint() for convert codepoints to string. https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/String/fromCodePoint#Polyfill

install

$ npm install obtain-unicode

usage

works in node and browser. Isomorphic !! no Browserify.

var ObtainUnicode =  ObtainUnicode || require('../obtain-unicode').ObtainUnicode;

console.log(ObtainUnicode("beer!🍻"));
// [98, 101, 101, 114, 33, 127867]
console.log(String.fromCodePoint(98, 101, 101, 114, 33, 127867));
// "beer!🍻

test

$ npm test

and also open test/index.html in your browser and see console.

for TypeScript

use obtain-unicode.d.ts

and also add this type declare to your code. (because d.ts can't include this)

// polyfill for String.fromCharCode
declare var String: {
  new (value?: any): String;
  (value?: any): string;
  prototype: String;
  fromCharCode(...codes: number[]): string;
  /**
   * Pollyfill of String.fromCodePoint
   */
  fromCodePoint(...codePoints: number[]): string;
}

License

The MIT License (MIT) Copyright (c) 2015 Jxck

Keywords

FAQs

Last updated on 26 Jan 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc