binarysystem

1.0.3 • Public • Published

BinarySystem

Examples:

Saving object to dll file:

let binSystem = require("binarysystem");
let object = {
    foo: true,
    bar: function(foo) {
        console.log(foo)
    }
}

binSystem.create('foobar.dll');

Getting object from dll file:

let binSystem = require('binarysystem');
let object = binSystem.open('foobar.dll');
console.log(object) // { foo: true, bar: [Function] }

/binarysystem/

    Package Sidebar

    Install

    npm i binarysystem

    Weekly Downloads

    2

    Version

    1.0.3

    License

    MIT

    Unpacked Size

    5.12 kB

    Total Files

    6

    Last publish

    Collaborators

    • em3rald1