X-Git-Url: http://git.squeep.com/?p=squeep-resource-authentication-module;a=blobdiff_plain;f=lib%2Fcommon.js;h=43af9d8fca21d70288ed15dc99d20cf95586c033;hp=ee7831f6b031a08ee559424860ac037235819a8a;hb=efa8e263868de47ff3528561c5f4c8eeefbd5035;hpb=69a2f5e7d73dd3f58e07b652c306daa8b253245d diff --git a/lib/common.js b/lib/common.js index ee7831f..43af9d8 100644 --- a/lib/common.js +++ b/lib/common.js @@ -1,12 +1,10 @@ 'use strict'; const { common } = require('@squeep/api-dingus'); -const b64u = require('@squeep/base64url'); const { randomBytes } = require('crypto'); const { promisify } = require('util'); const randomBytesAsync = promisify(randomBytes); module.exports = Object.assign(Object.create(common), { randomBytesAsync, - ...b64u, -}); \ No newline at end of file +});