Coder Social home page Coder Social logo

stringaccess's Introduction

StringAccess

String Access is a import, export library using by dot-notation string. See below.

Exporter

var sa = require('stringaccess')();
var superheros = {
  ironman: {
    name: 'Tony Stark',
    indivisual: {
      species: 'Human',
      placeOfOrigin: 'Earth',
      partnerships: 'War Machine'
    }
  },
  thor: {
    name: 'Thor Odinson',
    indivisual: {
      species: 'Asgardian',
      placeOfOrigin: 'Asgard'
    }
  }
};

console.log(sa.exporter(superheros, 'ironman.name'));

# shell output
Tony Stark

Importer

var sa = require('stringaccess')();
var superheros = {
  ironman: {
    name: 'Tony Stark',
    indivisual: {
      species: 'Human',
      placeOfOrigin: 'Earth',
      partnerships: 'War Machine'
    }
  },
  thor: {
    name: 'Thor Odinson',
    indivisual: {
      species: 'Asgardian',
      placeOfOrigin: 'Asgard'
    }
  }
};

sa.importer(superheros, 'hulk', { 
  name: 'Robert Bruce Banne',
});

sa = require('../lib/StringAccess')({ isCreate: true });   // isCreate options is create object on blank path
sa.importer(superheros, 'hulk.indivisual.species', 'Unknown');

console.log(superheros.hulk.name);
console.log(superheros.hulk.indivisual.species);

# shell output
Robert Bruce Banne
Unknown

Options

  • isCreate: Create object on blank path
  • isAssign: Path is point to object this time replace it. But isAssign is true, assign it. See test/sa.js in StringAccess_importer_object test.

If you need more example, see test/sa.js.

stringaccess's People

Contributors

imjuni avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.