An open API service indexing awesome lists of open source software.

https://github.com/varvolta/anycoder


https://github.com/varvolta/anycoder

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# **Convert any js code to string and vice versa.**

Classes, Functions, Objects, Arrays and everything else.


# Installation
```
npm i anycoder
```


# Usage
```js
import Anycoder from 'anycoder'

// encode with
const string = Anycoder.encode(Class)

// decode with
const Class = Anycoder.decode(string)

```