Socket
Socket
Sign inDemoInstall

objekto

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    objekto

Converts an object into a plain string recursively (`{a: 'foo', b: {c: {d: 'bar'}}}` to `'a=foo;b|c|d=bar'`) and vice versa.


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Objekto

Objekto is a small utility to convert an object into a string ({a: 'foo', b: {c: {d: 'bar'}}} to 'a=foo;b|c|d=bar') and vice versa.

npm install --save objekto

Import

Require:

var ots = require('objekto');
var objectToString = ots.objectToString;
var stringToObject = ots.stringToObject;
var objectToString = require('objekto/ots');
var stringToObject = require('objekto/sto');

ES6:

import { objectToString, stringToObject } from 'objekto';
import objectToString from 'objekto/ots';
import stringToObject from 'objekto/sto';

Usage

Convert an object into a string or vice versa:

var obj0 = {a: 'foo'};
var str0 = 'a=foo';
console.log(objectToString(obj0) === str0); // -> true
console.log(_.isEqual(stringToObject(str0), obj0)); // -> true

var obj1 = {a: 'foo', b: 'bar'};
var str1 = 'a=foo;b=bar';
console.log(objectToString(obj1) === str1); // -> true
console.log(_.isEqual(stringToObject(str1), obj1)); // -> true

var obj2 = {
   a: 'foo',
   b: 'bar',
   c: {
       d: 'foobar'
   }
};
var str2 = 'a=foo;b=bar;c|d=foobar';
console.log(objectToString(obj2) === str2); // -> true
console.log(_.isEqual(stringToObject(str2), obj2)); // -> true

Options:

var object = {
    a: 'foo',
    b: {
        c: 'bar'
    }
};

var string = 'a~foo||b.c~bar';

var options = {
    keySeparator: '||',
    keyValueSeparator: '~',
    levelSeparator: '.'
};

console.log(objectToString(object, options) === string); // -> true
console.log(_.isEqual(stringToObject(string, options), object)); // -> true

See test cases for other examples.

Tests

npm test

Notice on performance

You should note that on large and complex objects objectToString is about 3-4 times slower than JSON.stringify, stringToObject is about 2 times slower than JSON.parse. Run npm run benchmark to see for yourself. I suggest to use this utils only in case you really can't afford native JSON methods.

Changelog

  • 1.1.3: Update merge.js and tests.
  • 1.1.2: Added benchmark.
  • 1.1.1: Removed lodash dependency.
  • 1.1.0: Performance improvements.
  • 1.0.0: Initial release.

License

MIT @ Dmitry Korolev

P.S.

"Objekto" is an esperanto word for 'object' (which is pretty obvious, I guess).

Keywords

FAQs

Last updated on 06 Jun 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc