You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

tsutils

Package Overview
Dependencies
Maintainers
1
Versions
94
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.17.0 to 3.17.1

6

CHANGELOG.md

@@ -0,1 +1,7 @@

# 3.17.1
**Bugfixes:**
* `isValidJsxIdentifier`, `isValidPropertyAccess`, `isValidPropertyName`: fix unicode character width handling
# 3.17.0

@@ -2,0 +8,0 @@

2

package.json
{
"name": "tsutils",
"version": "3.17.0",
"version": "3.17.1",
"description": "utilities for working with typescript's AST",

@@ -5,0 +5,0 @@ "scripts": {

@@ -521,3 +521,3 @@ "use strict";

function charSize(ch) {
return ch > 0x10000 ? 2 : 1;
return ch >= 0x10000 ? 2 : 1;
}

@@ -524,0 +524,0 @@ function isValidPropertyAccess(text, languageVersion = ts.ScriptTarget.Latest) {

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc