insomnia/plugins/insomnia-plugin-base64/index.js

36 lines
841 B
JavaScript
Raw Normal View History

2018-06-25 17:42:50 +00:00
module.exports.templateTags = [
{
name: 'base64',
displayName: 'Base64',
description: 'encode or decode values',
args: [
{
displayName: 'Action',
type: 'enum',
options: [
{ displayName: 'Encode', value: 'encode' },
{ displayName: 'Decode', value: 'decode' }
]
},
{
displayName: 'Value',
type: 'string',
placeholder: 'My text'
}
],
run(context, op, text) {
text = text || '';
2018-06-25 17:42:50 +00:00
if (op === 'encode') {
return Buffer.from(text, 'utf8').toString('base64');
} else if (op === 'decode') {
return Buffer.from(text, 'base64').toString('utf8');
} else {
throw new Error(
'Unsupported operation "' + op + '". Must be encode or decode.'
);
}
}
}
2018-06-25 17:42:50 +00:00
];