1.0.0 • Published 5 years ago

@cjtierney/table.js v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

table.js

(WIP)

table.js is a project that I have been working on to add tables to javascript in place of databases. it is simple to use and very compact, however I am somewhat new to programming so there will be alot of room for improvement. Currently, the basic functions are: table.create(rows,cols); // return a new table string with the specified amount of rows and columns table.read(table,rows,cols); // read a table cell at the specified location table.write(table,rows,cols,text); // change a table cell value at a specific location and return the new table table.check(string); // returns false if the string contains symbols that will be rejected by the table.write() function