Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

is-surrogate-pair-x

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-surrogate-pair-x

Tests if 2 characters together are a surrogate pair.

  • 1.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
535
increased by76.57%
Maintainers
1
Weekly downloads
 
Created
Source

Travis status Dependency status devDependency status npm version

is-surrogate-pair-x

Tests if 2 characters together are a surrogate pair.

Version: 1.4.0
Author: Xotic750 Xotic750@gmail.com
License: MIT
Copyright: Xotic750

module.exports(char1, char2)boolean

Tests if the two character arguments combined are a valid UTF-16 surrogate pair.

Kind: Exported function
Returns: boolean - Returns true if the two characters create a valid 'UTF-16' surrogate pair; otherwise false.

ParamTypeDescription
char1*The first character of a suspected surrogate pair.
char2*The second character of a suspected surrogate pair.

Example

var isSurrogatePair = require('is-surrogate-pair-x');

var test1 = 'a';
var test2 = '𠮟';

isSurrogatePair(test1.charAt(0), test1.charAt(1)); // false
isSurrogatePair(test2.charAt(0), test2.charAt(1)); // true

Keywords

FAQs

Package last updated on 10 Jul 2017

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