Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isayme/node-buffer-join
join for Buffer
https://github.com/isayme/node-buffer-join
Last synced: 13 days ago
JSON representation
join for Buffer
- Host: GitHub
- URL: https://github.com/isayme/node-buffer-join
- Owner: isayme
- License: mit
- Created: 2018-10-22T02:09:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-23T01:23:30.000Z (about 6 years ago)
- Last Synced: 2024-11-20T11:08:41.933Z (about 1 month ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## `join` function for Buffer
[![Build Status](https://travis-ci.org/isayme/node-buffer-join.svg?branch=master)](https://travis-ci.org/isayme/node-buffer-join)
[![Coverage Status](https://coveralls.io/repos/github/isayme/node-buffer-join/badge.svg?branch=master)](https://coveralls.io/github/isayme/node-buffer-join?branch=master)```
const bufferJoin = require('buffer-join')bufferJoin([Buffer.from('a'), Buffer.from('b')], Buffer.from(',')).toString() // => a,b
```