Datasets:

Modalities:
Text
Formats:
json
Languages:
code
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 228 Bytes
0414e50
1
const baseURL = 'http://localhost:9000/api/words/'export const getWords = () => {        // BUG: CWE-319: Cleartext Transmission of Sensitive Information// return fetch(baseURL)// FIXED:         .then(res => res.json())    }