You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
259 B
JavaScript

"use strict";
module.exports = function encodeAccessToken({ deviceId, token }) {
if (deviceId == null || token == null) {
throw new Error("Device ID and token are required");
} else {
return `${Buffer.from(deviceId).toString("base64")}:${token}`;
}
};