New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bdfparser

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bdfparser - npm Package Compare versions

Comparing version
2.2.4
to
2.2.5
+1
-1
package.json
{
"name": "bdfparser",
"version": "2.2.4",
"version": "2.2.5",
"description": "BDF (Glyph Bitmap Distribution Format) Bitmap Font File Parser Library in JavaScript (TypeScript)",

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

@@ -59,1 +59,8 @@ # BDF Parser TypeScript (JavaScript) library

```
If you are using **Deno** instead of Node.js, you don't need to install the package with npm/yarn, and you should replace `const { $Font } = require('bdfparser'); const getline = require('readlineiter')` by:
```ts
import { $Font } from "https://raw.githubusercontent.com/tomchen/bdfparser-js/main/deno/mod.ts"
import readlineiter from 'https://raw.githubusercontent.com/tomchen/fetchline/main/packages/readlineiter-deno/mod.ts'
```