UNPKG
@abandonware/bleno
Version:
latest (0.6.2)
0.6.2
0.6.1
0.6.0
0.5.1-4
0.5.1-3
0.5.1-2
0.5.1-1
0.5.1-0
A Node.js module for implementing BLE (Bluetooth Low Energy) peripherals
abandonware/bleno
@abandonware/bleno
/
lib
/
uuid-util.js
8 lines
(6 loc)
•
119 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
.
removeDashes
=
function
(
uuid
) {
if
(uuid) { uuid = uuid.
replace
(
/-/g
,
''
); }
return
uuid; };