Collection.prototype.updateOne = function (item, update, options, callback) {
        var args = [item, update];
        callback = this.parseArguments(args, options, callback);

        return this.emit('updateOne', args, callback);