Method: JSON::Ext::Generator::State#space

Defined in:
generator/generator.c

#spaceObject

Returns the string that is used to insert a space between the tokens in a JSON string.



1196
1197
1198
1199
1200
# File 'generator/generator.c', line 1196

static VALUE cState_space(VALUE self)
{
    GET_STATE(self);
    return state->space ? state->space : rb_str_freeze(rb_utf8_str_new("", 0));
}