var checkIfRoutingIsEnabled = function (options) {
  if (!options.configModel) throw new Error('configModel is required');
  return isDataServicesReady(options.configModel) && !!options.configModel.dataServiceEnabled('routing');
};