Skip to content

unctionjs/objectFrom

Repository files navigation

@unction/objectFrom

Tests Stability Dependencies

KeyChainType => B => ObjectType

Given a keychain and a value it creates an object that has keys based on the keychain.

objectFrom(["key", "subkey"])("value")

Which returns:

{
  key: {
    subkey: "value"
  }
}