in themes/tfjs/helper/index.js [117:130]
titleFor: function(path) {
if (isApiNodePage(path)) {
return 'TensorFlow.js Node API';
} else if (isApiVisPage(path)) {
return 'TensorFlow.js Vis API';
} else if (isApiReactNativePage(path)) {
return 'TensorFlow.js React Native API';
} else if (isTflitePage(path)) {
return 'TensorFlow.js TFLite API';
} else if (isApiPage(path)) {
return 'TensorFlow.js API';
}
return 'TensorFlow.js';
},