StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/registry-auth-token/base64.js

14 lines
322 B

const safeBuffer = require('safe-buffer').Buffer
function decodeBase64 (base64) {
return safeBuffer.from(base64, 'base64').toString('utf8')
}
function encodeBase64 (string) {
return safeBuffer.from(string, 'utf8').toString('base64')
}
module.exports = {
decodeBase64: decodeBase64,
encodeBase64: encodeBase64
}