Modify javascript objects recursively with pipeable node modifier functions
You can use this library for modifying any object in javascript including arrays and collections.
Those functions were initially created to translate figmaTokens JSON format to style-dictionary. Its purpose was to unify all values and resolve references.
Since it is quite extensible and pipeable, I decided to publish it as a standalone npm package.
$ yarn add omod
Then in your file:
const { omod } = require('omod');
[...]
const modifiedObject = omod(inputObject, modifierFn)
Omod runs modifier function for each node of the object recursively, doesn't matter if it is nested object, collection or primitives array. Therefore, it's up to modifier, what it is going to modify.
omod(inputObject, modifierFn)
inputObject
- object to be modifiedmodifierFn
- function for modifying nodes of object.
In modifier function you can modify whole nodes, array items, or primitive values of the object. Your function may test current node, and execute modifications to modify object selectively.
const extractColorValues = (node, path, object) => {
if (path.includes('colors') && 'value' in node) {
const color = doSomethingWithColor(node.value);
return {
originalColor: node.value,
value: {
r: color.getR(),
g: color.getG(),
b: color.getB(),
a: color.getA()
}
}
}
return node // has to return node
}
value
- current value to be modifiedpath
- path to the value in form of array. For example:[ 'colors', 'primary', 4 ]
object
- full initial object
You can also pipe some modifiers using modifierPipe
const { omod, modifierPipe } = require('omod');
const modifierA = [...]
const modifierB = [...]
const modifierC = [...]
const modifiers = modifierPipe(
modifierA,
modifierB,
modifierC
)
const modifiedObject = omod(object, modifiers)
const { isArray, isString, last, get } = require('omod')
Fetches value from object using given path
Checks if given value is array
Checks if given path is path to array element
Checks if given value is number
Checks if given value is object
Checks if given value is string
Gets last element from array
Creates pipe for given modifiers