Every line of 'create table javascript' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
231 export function createTable(table: Table): string { 232 const {name, columns, constraints = []} = table; 233 const columnsRows = columns.map(column => ` ${describeColumn(column)}`); 234 const constraintsRows = constraints.map(constraint => 235 ` UNIQUE (${constraint.columns.join(', ')})` 236 ); 237 const columnsAndConstraints = columnsRows.concat(constraintsRows).join(',\n'); 238 return `CREATE TABLE ${name} (\n${columnsAndConstraints}\n);`; 239 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
223 function createTable(tableID, tableContainer, tableData) { 224 225 var table = $('<table>'); 226 table.attr('id', tableID); 227 228 table.append($('<caption>').html("Co-authors <a href=\"" + egoCoAuthorsListDataFileURL + "\">(.CSV File)</a>")); 229 230 var header = $('<thead>'); 231 232 var row = $('<tr>'); 233 234 var authorTH = $('<th>'); 235 authorTH.html("Author"); 236 row.append(authorTH); 237 238 row.append($('<th>').html("Publications with <br />" + $('#ego_label').text())); 239 240 header.append(row); 241 242 table.append(header); 243 244 $.each(tableData, function(i, item){ 245 246 var row = $('<tr>'); 247 248 row.append($('<td>').html(item.label)); 249 row.append($('<td>').html(item.number_of_authored_works)); 250 251 table.append(row); 252 253 }); 254 255 table.prependTo('#' + tableContainer); 256 $('#' + tableContainer + " #loadingData").remove(); 257 }