• value {any}
    • Returns: {boolean}

    Returns true if the value is a string object, e.g. created by new String().

    1. util.types.isStringObject('foo'); // Returns false
    2. util.types.isStringObject(new String('foo')); // Returns true