
{{alias}}( value )
    Tests if an input value is an ndarray order.

    Parameters
    ----------
    value: any
        Value to test.

    Returns
    -------
    bool: boolean
        Boolean indicating if an input value is an ndarray order.

    Examples
    --------
    > var bool = {{alias}}( 'row-major' )
    true
    > bool = {{alias}}( 'column-major' )
    true
    > bool = {{alias}}( '' )
    false
    > bool = {{alias}}( 'beep' )
    false

    See Also
    --------

