map-pointer
v1.0.2
Published
Map from one object to another using JSON pointers
Downloads
4
Maintainers
Readme
Map Pointer
Map from one object to another using JSON pointers.
Installation
npm install map-pointer --save
Usage
Arguments
schema
(object, string or array) The schema to map ontoinput
(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