Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 392 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 392 Bytes

base64encode1

Base 64 character string encoding module

Installation

This is a [Node.js] (https://nodejs.org/en/) module available at [npm registry] (https://www.npmjs.com/).

$ npm install base64encode1 --save
const base64encode = require('base64encode1');
const text = "Hello World !";

console.log(base64encode(text));

Result

$ SGVsbG8gV29ybGQgIQ==