
{{alias}}( obj, prop, setter )
    Defines a write-only accessor.

    Write-only accessors are enumerable and non-configurable.

    Parameters
    ----------
    obj: Object
        Object on which to define the property.

    prop: string|symbol
        Property name.

    setter: Function
        Set accessor.

    Examples
    --------
    > var obj = {};
    > var val = '';
    > function setter( v ) { val = v; };
    > {{alias}}( obj, 'foo', setter );
    > obj.foo = 'bar';
    > val
    'bar'

    See Also
    --------

