Skip to content

Module in JavaScript for map object's properties to string key's properties as values

Notifications You must be signed in to change notification settings

CILP/PropertyMaper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PropertyMaper Build Status Coverage Status

Module in JavaScript for map object's properties to string key's properties as values

##Prerequisites To Install and run the project you need to have installed NodeJS.

https://nodejs.org/en

##Installation

npm install property-maper

##Usage To map an object to a json-string template:

.map(map, scope)

Parameter: map(string) Contains the string template in json format

Parameter: scope(object) Contains the object wich has the data to bind into map

Return: Maped object with map format

##Example

var pm = require('property-maper');

var result = pm.map("{
    name:data.person.name,
    last_name:data.person.last_name,
    addres:data.person.addres,
    hobbies:data.person.hobbies,
    others:data.others.other
  }",
  {
    data: {
      person: {
        name:"Carlos",
        last_name:"Linares",
        addres:"Guadalajara",
        hobbies:"Play Guitar, Video Games"
      },
      others: {
        other: "Other things, etc."
      }
    }
  }
);

console.log(result);

##Result The result will be...

{
  name:"Carlos",
  last_name:"Linares",
  addres:"Guadalajara",
  hobbies:"Play Guitar, Video Games",
  others:"Other things, etc."
}

##License MIT License

About

Module in JavaScript for map object's properties to string key's properties as values

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published