New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@rolodromo/gameicons-webfont

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rolodromo/gameicons-webfont - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

2

package.json
{
"name": "@rolodromo/gameicons-webfont",
"version": "1.3.0",
"version": "1.3.1",
"description": "GameIcons packed as webfonts",

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

@@ -14,2 +14,4 @@

- **v1.3** (2018-10-13)
- 3375 icons included
- **v1.2** (2018-05-03)

@@ -16,0 +18,0 @@ - 3322 icons included

const data = require('../icons')
const getDb = require('./db')
let header = `
const main = async () => {
let header = `
;gi-icon
[gi-all]
<span class='glossy'>[gi-all]</span>
;gi-size
gi-4x
gi-2x
;gi-all
`
let html = ''
let nameTables = ''
let html = ''
let nameTables = ''
Object.keys(data.icons).map(key => {
const db = await getDb()
const list = db.get('iconsByCategory').value()
header += `[${key}]\n`
html += `\n;${key}\n<i class="gi [gi-${key}-names] [gi-size]"></i>\n`
Object.keys(list).map(key => {
const names = data.icons[key]
header += `[${key}]\n`
html += `\n;${key}\n<i class="gi [gi-${key}-names] [gi-size]"></i>\n`
nameTables += `\n;gi-${key}-names\n`
const names = list[key]
names.forEach(name => {
nameTables += `gi-${name}\n`
nameTables += `\n;gi-${key}-names\n`
names.forEach(name => {
nameTables += `gi-${name}\n`
})
})
})
console.log(`${header}${html}\n${nameTables}`)
console.log(`${header}${html}\n${nameTables}`)
}
main()
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