
Research
Security News
The Landscape of Malicious Open Source Packages: 2025 Mid‑Year Threat Report
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
emoji-aware
Advanced tools
Note: Lodash's toArray
(as of 4.0.0) and split
(as of 4.9.0) functions
now correctly split strings that contain emoji; so if that's all you need to do
then Lodash is a great fit.
Emoji-aware unicode string utilities for JavaScript.
You'll need these if you ever want to split strings that contain emoji.
If you use naive methods for this (or packages that purport to split unicode strings correctly) you'll have trouble because emoji can span multiple characters/surrogate pairs.
The longest emoji I'm aware of is specified by 4 "regular" emoji (one, a heart, with its own variation selector) with zero-width joiners in between them. That's 8 unicode characters as split by most libraries. This library will correctly split that emoji into one entry in the returned array of characters.
(But the unicode portion probably needs some more work).
emoji-aware
also includes a parser combinator-based parser for emoji that you
can build on top of for your own parsing needs.
split
Split a string but keep emoji intact.
var split = require('emoji-aware').split;
var result = split('cats 😸 are the best');
result[5] === '😸';
// true
A starker example that uses Mathias Bynens' getSymbols
with a
composed emoji:
onlyEmoji
Returns only the emoji contained in the string.
var onlyEmoji = require('emoji-aware').onlyEmoji;
onlyEmoji('testing😸');
// ['😸']
withoutEmoji
Returns only the non-emoji contained in the string.
var withoutEmoji = require('emoji-aware').withoutEmoji;
withoutEmoji('testing😸');
// ['t', 'e', 's', 't', 'i', 'n', 'g']
FAQs
Emoji-aware unicode string utilities
The npm package emoji-aware receives a total of 0 weekly downloads. As such, emoji-aware popularity was classified as not popular.
We found that emoji-aware demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.