PodsJson.prototype.__isOldFormat = function()

in lib/PodsJson.js [57:66]


PodsJson.prototype.__isOldFormat = function () {
    if (this.contents !== null) {
        if (this.contents.declarations === undefined ||
            this.contents.sources === undefined ||
            this.contents.libraries === undefined) {
            return true;
        }
    }
    return false;
};