A utility library to easily transform your data: describe your desired output, provide an input, and voilà 🌟!
The goal of this library is to allow you to easily create utility functions to transform one type of data to another, using functional programming. You can read more on why you might need transformer on the wiki.
npm i @waldojeffers/transformer
import { identity, map, mapFrom, transform } from '@waldojeffers/transformer'
const input = {
firstname: 'James',
lastname: 'M',
occupation: 'Drummer',
drumsticks: 2,
}
const transformer = transform({
age: x => 2 * x, // age is undefined, this will not be called
fullname: mapFrom(
// compute a from from 2 input props
['firstname', 'lastname'],
([firstname, lastname]) => `${firstname} ${lastname}`,
),
drumsticks: identity, // pass through
occupation: s => s.toLowerCase(), // apply a transformation
})
transformer(input) // { fullname: 'James M', drumsticks: 2, occupation: 'drummer' }
transform :: Object descriptor => (Object input => Object output)
Returns a function which transforms an input object based on the descriptor object you provide it. transform
is a pure function: it will create a new output object and will not modify the input object.
- descriptor
Object<outputProperty: Transformer>
: An object which describes how the output object will look like. Its keys define which properties will exist on the output object, and its values are transformers (such asidentity
,map
,mapFrom
) which compute the output object's values, usually by mapping from the input values.⚠️ Any property from the input object whose key is missing in the descriptor will be stripped off in the output object.
A function whose signature is Function: input: Object -> output: Object
. It accepts an input object which will be transformed into an ouput object based on the descriptor object provided earlier.
import { identity, mapFrom, transform } from '@waldojeffers/transformer'
const input = {
age: 27,
balance: 400.17,
name: 'James M',
}
const descriptor = {
balance: mapFrom('balance', amount => '$' + amount),
name: identity,
}
const transformer = transform(descriptor)
transformer(input) // { balance: '$400.17', name: 'James M'}
Transformer
A transformer function which will simply return the value associated with the output key from the input object, if it exists.
import { identity, transform } from '@waldojeffers/transformer'
const input = {
name: 'James M',
}
const descriptor = {
age: identity,
name: identity,
}
const transformer = transform(descriptor)
transformer(input) // { name: 'James M'}
Function: mapper: Function -> Transformer
Returns a transformer function which will pick the value associated to the input object's key on which this function is used, and map over it using the provided mapper function.
- mapper
Function
: A function which will map over the associated property's value.
import { identity, transform } from '@waldojeffers/transformer'
const input = {
name: 'James M',
}
const descriptor = {
name: map(s => s.toUpperCase()),
}
const transformer = transform(descriptor)
transformer(input) // { name: 'JAMES M'}
Function: (inputKey: String|Array<String>, [mapper: (Function: inputValue: any|Object<any>)]) -> Transformer
Returns a transformer function which will pick keys from the input object and transform their associated value with a provided mapper function.
- inputKey
String | Array<String>
: the inputKey(s) whose associated value in the input object should be retrieved and provided to the mapper function - mapper
Function: any | Array<any> -> any
: the function which will map over the picked keys. Its default value is the identity function (x => x
). If a string is provided as the input key, the mapper function will receive its associated value. If an array of strings is provided, the function will receive the associated values as an array.
import { mapFrom, transform } from '@waldojeffers/transformer'
const input = {
balance: 400.17,
firstname: 'James',
lastname: 'M',
drumstickCount: 2,
drumstickPrice: 7.5,
}
const descriptor = {
balance: mapFrom('balance', amount => '$' + amount),
fullname: mapFrom(['firstname', 'lastname'], arr => arr.join(' ')),
drumsticksValue: mapFrom(
['drumstickCount', 'drumstickValue'],
([a, b]) => a * b,
),
}
const transformer = transform(descriptor)
transformer(input) // { balance: '$400.17', fullname: 'James M', drumsticksValue: 15}