npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

eslexical

v1.0.0

Published

Utility library for ECMAScript parsers.

Readme

ES lexical

Utility library for ECMAScript parsers.

eslexical provides an alternative implementation of esutils.code functions. The main difference is that esutils convert non-ASCII argument code points to strings (testing those with regular expressions), whereas eslexical works exclusively with numbers (combining binary search and bit field lookup).

Character data generated from @unicode/unicode-14.0.0

Functions

isWhiteSpace

isWhiteSpace: (codePoint: number) => boolean

Return true if the codePoint is a White Space, false otherwise.

  • any code point from the Unicode category Space_Separator
  • U+0009 — CHARACTER TABULATION
  • U+000B — LINE TABULATION
  • U+000C — FORM FEED
  • U+0020 — SPACE
  • U+00A0 — NO-BREAK SPACE
  • U+FEFF — ZERO WIDTH NO-BREAK SPACE

isLineTerminator

isLineTerminator: (codePoint: number) => boolean

Return true if the codePoint is a Line Terminator, false otherwise.

  • U+000A — LINE FEED
  • U+000D — CARRIAGE RETURN
  • U+2028 — LINE SEPARATOR
  • U+2029 — PARAGRAPH SEPARATOR

isIdentifierStart

isIdentifierStart: (codePoint: number) => boolean

Return true if the codePoint can start an Identifier Name, false otherwise.

  • any code point with the Unicode property ID_Start
  • U+0024 — DOLLAR SIGN
  • U+005F — LOW LINE

isIdentifierPart

isIdentifierPart: (codePoint: number) => boolean

Return true if the codePoint can appear in Identifier Name, false otherwise.

  • any code point with the Unicode property ID_Continue
  • U+0024 — DOLLAR SIGN
  • U+200C — ZERO WIDTH NON-JOINER
  • U+200D — ZERO WIDTH JOINER

isDecimalDigit

isDecimalDigit: (codePoint: number) => boolean

Return true if the codePoint is a Decimal Digit, false otherwise.

  • any of 0 1 2 3 4 5 6 7 8 9

isBinaryDigit

isBinaryDigit: (codePoint: number) => boolean

Return true if the codePoint is a Binary Digit, false otherwise.

  • any of 0 1

isOctalDigit

isOctalDigit: (codePoint: number) => boolean

Return true if the codePoint is an Octal Digit, false otherwise.

  • any of 0 1 2 3 4 5 6 7

isHexDigit

isHexDigit: (codePoint: number) => boolean

Return true if the codePoint is a Hexadecimal Digit, false otherwise.

  • any of 0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f

Related