libcore
Version:
Kicks-start helpers for cross-browser libraries and different versions of nodejs
37 lines (22 loc) • 749 B
Markdown
Kicks-start helpers for cross-browser libraries and different versions of nodejs
Libcore can be installed from NPM by running the lines
below in your working directory containing package.json file
for use in NodeJS, browserify or webpack.
```js
npm install libcore
```
```js
var libcore = require("libcore");
libcore.encode64('Good Game!'); // R29vZCBHYW1lIQ==
// using es6 import
import { encode64 } from "libcore";
encode64('Good Game!'); // R29vZCBHYW1lIQ==
```
___
Please refer to [API Documentation](https://diko316.github.io/libcore) for more information and usage of this library.
This Project is fully Open Source [MIT](https://opensource.org/licenses/MIT) licensed.