Skip to content

Commit b91db65

Browse files
Add json-bufferify.min.js
1 parent c1275ed commit b91db65

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [json-bufferify](https://github.com/LangZhai/json-bufferify) [![Travis (.org)](https://img.shields.io/travis/LangZhai/json-bufferify)](https://travis-ci.org/LangZhai/json-bufferify/builds) [![npm](https://img.shields.io/npm/v/json-bufferify)](https://www.npmjs.com/package/json-bufferify) ![GitHub file size in bytes](https://img.shields.io/github/size/LangZhai/json-bufferify/dist/json-bufferify.js)
1+
# [json-bufferify](https://github.com/LangZhai/json-bufferify) [![Travis (.org)](https://img.shields.io/travis/LangZhai/json-bufferify)](https://travis-ci.org/LangZhai/json-bufferify/builds) [![npm](https://img.shields.io/npm/v/json-bufferify)](https://www.npmjs.com/package/json-bufferify) ![GitHub file size in bytes](https://img.shields.io/github/size/LangZhai/json-bufferify/dist/json-bufferify.min.js)
22

33
This is a module to help you convert between JSON and ArrayBuffer, and you can run it in both Node.js and browser.
44

dist/json-bufferify.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "json-bufferify",
33
"version": "0.1.2",
4-
"main": "dist/json-bufferify.js",
4+
"main": "dist/json-bufferify.min.js",
55
"types": "dist/json-bufferify.d.ts",
66
"description": "This is a module to help you convert between JSON and ArrayBuffer, and you can run it in both Node.js and browser.",
77
"author": {

test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const bufferify = require('./dist/json-bufferify');
1+
const bufferify = require('./dist/json-bufferify.min.js');
22

33
console.log(bufferify.decode(10, {
44
name: 'string',

0 commit comments

Comments
 (0)