deleted: (record, currentDepth, fn, spaces, step) => {
    const { key } = record;
    const value = stringify(record.value, currentDepth, spaces, step);
    const indent = currentDepth * step - 2;
    return `${spaces.repeat(indent)}- ${key}: ${value}`;