UNPKG

lightfactor-uaf

Version:
43 lines (31 loc) 1.29 kB
/* Copyright © 2016, Lightfactor, LLC. Created by Dave Atherton. This file is part of lightfactor-uaf. lightfactor-uaf is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. lightfactor-uaf is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Foobar. If not, see <http://www.gnu.org/licenses/>. */ function UAFError(message, code, details) { this.message = message; this.code = code; this.details = details; // Error.captureStackTrace(null); } UAFError.prototype = Object.create(Error.prototype); UAFError.prototype.constructor = UAFError; UAFError.prototype.name = "UAFError"; function toWebsafeBase64(buf) { return buf.toString('base64').replace(/\//g,'_').replace(/\+/g,'-').replace(/=/g, ''); } module.exports = { toWebsafeBase64: toWebsafeBase64, UAFError: UAFError }