Skip to content

blakeembrey/map-pointer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Map Pointer

NPM version NPM downloads Build status Test coverage

Map from one object to another using JSON pointers.

Installation

npm install map-pointer --save

Usage

Arguments

  1. schema (object, string or array) The schema to map onto
  2. input (any) The input object to select from

Example

import { map } from 'map-pointer'

const schema = {
  sub: '/id',
  name: '/full_name'
}

const input = {
  id: 123,
  full_name: 'Blake Embrey'
}

map(schema, input) //=> { sub: 123, name: 'Blake Embrey' }

License

Apache 2.0

About

Map from one object to another using JSON pointers

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published