https://github.com/isayme/node-buffer-join
join for Buffer
https://github.com/isayme/node-buffer-join
Last synced: 3 months 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-23T01:23:30.000Z (over 6 years ago)
- Last Synced: 2025-03-25T10:02:28.130Z (4 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## `join` function for Buffer
[](https://travis-ci.org/isayme/node-buffer-join)
[](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
```