Wrapper for [bleno](https://github.com/noble/bleno) that allows passing in custom bindings.
npm install @cdmnky/blenoWrapper for bleno that allows passing in custom bindings.
``js
const CustomBindings = require('custom-bindings');
const Bleno = require('@cdmnky/bleno');
let bindings = new CustomBindings();
let bleno = new Bleno(bindings);
// use bleno normally
``