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

@iconify/api

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iconify/api - npm Package Compare versions

Comparing version 3.1.0-beta.8 to 3.1.0

lib/data/counter.d.ts

10

lib/data/icon-set/store/split.js

@@ -17,3 +17,11 @@ import { defaultIconDimensions } from '@iconify/utils/lib/icon/defaults';

if (iconSet[prop]) {
result[prop] = iconSet[prop];
const value = iconSet[prop];
if (typeof value === 'object') {
// Make sure object has null as constructor
result[prop] = Object.create(null);
Object.assign(result[prop], iconSet[prop]);
}
else {
result[prop] = iconSet[prop];
}
}

@@ -20,0 +28,0 @@ else if (prop === 'aliases') {

18

package.json

@@ -6,3 +6,3 @@ {

"license": "MIT",
"version": "3.1.0-beta.8",
"version": "3.1.0",
"publishConfig": {

@@ -19,3 +19,3 @@ "access": "public",

},
"packageManager": "npm@10.4.0",
"packageManager": "npm@10.6.0",
"engines": {

@@ -36,14 +36,14 @@ "node": ">=16.15.0"

"@fastify/formbody": "^7.4.0",
"@iconify/tools": "^4.0.2",
"@iconify/tools": "^4.0.4",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.1.22",
"dotenv": "^16.4.4",
"fastify": "^4.26.1"
"@iconify/utils": "^2.1.23",
"dotenv": "^16.4.5",
"fastify": "^4.26.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"vitest": "^1.5.2"
}
}
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