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

emoji-picker-element

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emoji-picker-element - npm Package Compare versions

Comparing version 1.18.2 to 1.18.3

8

database.js

@@ -675,2 +675,4 @@ function assertNonEmptyString (str) {

const isFirefoxContentScript = typeof wrappedJSObject !== 'undefined';
// remove some internal implementation details, i.e. the "tokens" array on the emoji object

@@ -682,2 +684,8 @@ // essentially, convert the emoji from the version stored in IDB to the version used in-memory

}
// if inside a Firefox content script, need to clone the emoji object to prevent Firefox from complaining about
// cross-origin object. See: https://github.com/nolanlawson/emoji-picker-element/issues/356
/* istanbul ignore if */
if (isFirefoxContentScript) {
emoji = structuredClone(emoji);
}
delete emoji.tokens;

@@ -684,0 +692,0 @@ if (emoji.skinTones) {

2

package.json
{
"name": "emoji-picker-element",
"version": "1.18.2",
"version": "1.18.3",
"description": "Lightweight emoji picker distributed as a web component",

@@ -5,0 +5,0 @@ "main": "index.js",

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