Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
immutable-table
Advanced tools
Immutable.js powered Table data type.
immutable-table exports a Table
class which can be used to represent a sized
two dimensional array as an Immutable.js data type.
npm install --save immutable-table
To import in ES6:
import { Table } from 'immutable-table';
To import in ES5:
var Table = require('immutable-table').Table;
To create a table you must pass a width
and height
to the constructor. Here
a table of width 3
and height 4
is created:
var table = new Table(3, 4);
By default all values of the table are undefined
. To set a value in the table,
use the setCell(x, y, value)
function:
table = table.setCell(0,0,'value');
Negative indicies can be used to index from the right or bottom. This is true
for all index accepting methods. Here the bottom, right cell is set to 99
:
table = table.setCell(-1,-1,99);
Values can be any type. Likewise, get a value using getCell(x, y)
:
console.log(table.getCell(0,0));
will print value
.
You can get a range of values, as a Table, by using
slice(startX, startY, [endX], [endY])
. When endX
and endY
are not
provided, the ends of the table are used:
var subTable = table.slice(1,1);
will return the bottom right subtable of table of size 2,3.
The width and height of a table can be read using the width
and height
readonly properties:
console.log(table.width, table.height);
will print 3 4
.
You can compare a table to another table using the equal(otherTable)
method:
console.log(table.equal(subTable));
will print false
.
console.log(table.equal(table));
will print true
.
You can also create a table from a CSV string:
var otherTable = Table.fromCSV([
'1, 2',
'3, 4'
].join('\n'));
Tables can be serialized to JSON:
var text = JSON.stringify(otherTable);
and later deserialized using a reviver:
var sameTableAsBefore = JSON.parse(text, Table.makeReviver());
running:
sameTableAsBefore.equal(otherTable);
will evaluate to true
.
FAQs
Immutable.js powered Table data type
The npm package immutable-table receives a total of 0 weekly downloads. As such, immutable-table popularity was classified as not popular.
We found that immutable-table demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.