Skip to content

Commit

Permalink
fix: update package description
Browse files Browse the repository at this point in the history
  • Loading branch information
sinchang committed May 28, 2022
1 parent 1efb4f4 commit 5073584
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![NPM version](https://img.shields.io/npm/v/qrcode-parser.svg?style=flat)](https://npmjs.com/package/qrcode-parser) [![NPM downloads](https://img.shields.io/npm/dm/qrcode-parser.svg?style=flat)](https://npmjs.com/package/qrcode-parser) [![CircleCI](https://circleci.com/gh/sinchang/qrcode-parser/tree/master.svg?style=shield)](https://circleci.com/gh/sinchang/qrcode-parser/tree/master)

A pure javascript QR code reading library, accept File object, image url, image base64.
A pure javascript QR code decoding library, accept PNG File object, PNG image url, image base64.

## Example

Expand All @@ -19,7 +19,7 @@ yarn add qrcode-parser
```js
import qrcodeParser from "qrcode-parser";

// input should be File object, image url, image base64
// input should be PNG File object, PNG image url, image base64
qrcodeParser(input);
// => return promise
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "qrcode-parser",
"version": "2.0.0",
"description": "A pure javascript QR code reading library, accept File object, image url, image base64.",
"description": "A pure javascript QR code decoding library, accept PNG File object, PNG image url, image base64.",
"repository": {
"url": "sinchang/qrcode-parser",
"type": "git"
Expand Down

0 comments on commit 5073584

Please sign in to comment.