1.0.3 • Published 4 years ago

binarysystem v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

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] }