MCPcopy Index your code
hub / github.com/tensorflow/tfjs-examples / getTargetWords

Function getTargetWords

electron/renderer.js:77–80  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

75/** Parse the target words for search from the text box. */
76const targetWordsInput = document.getElementById('target-words');
77function getTargetWords() {
78 return targetWordsInput.value.trim().split(',')
79 .filter(x => x.length > 0).map(x => x.trim().toLowerCase());
80}
81
82const snackbar = new MDCSnackbar(document.getElementById('main-snackbar'));
83

Callers 1

renderer.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected