function isString(x: sexp.Item): x is sexp.String {
    return x && x.type === 'string'
}