static isSupportedPlatform()

in core/nodejsActionBase/platform/platform.js [82:87]


    static isSupportedPlatform(id) {
        if (SUPPORTED_PLATFORMS.indexOf(id) > -1) {
            return true;
        }
        return false;
    }