Skip to content

Instantly share code, notes, and snippets.

@arleighdickerson
Created July 13, 2025 17:36
Show Gist options
  • Save arleighdickerson/e371c469ab47974e1ca1d68fe6e89b31 to your computer and use it in GitHub Desktop.
Save arleighdickerson/e371c469ab47974e1ca1d68fe6e89b31 to your computer and use it in GitHub Desktop.
module.exports = function (Driver) {
return class extends Driver {
constructor(url) {
super(url, [
// 'v10.stomp',
// 'v11.stomp',
'v12.stomp',
]);
this.binaryType = 'arraybuffer';
}
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment