Module: Crio

Source:

Classes

Crio
CrioArray
CrioObject

Methods


<inner> concat(items)

append the items passed to the crio

Parameters:
Name Type Argument Description
items Array.<*> <repeatable>

items to append to the crio

Source:
Returns:

new crio array instance

Type
CrioArray

<inner> constructor(object)

add the items to the crio, and return a frozen version

Parameters:
Name Type Description
object Object

object passed for crioing

Source:
Returns:

crioed object

Type
Crio

<inner> findKey(fn)

find a specific key based on a matching function

Parameters:
Name Type Description
fn function

function to match

Source:
Returns:

key matching fn

Type
string | undefined