Socket
Book a DemoInstallSign in
Socket

table-as

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table-as

The only table generator you'll need for AssemblyScript

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
80
-65.81%
Maintainers
0
Weekly downloads
 
Created
Source
 _____  _____      _____  _____  _____  __     _____ 
|  _  ||   __| ___|_   _||  _  || __  ||  |   |   __|
|     ||__   ||___| | |  |     || __ -||  |__ |   __|
|__|__||_____|      |_|  |__|__||_____||_____||_____|
v1.0.1

Installation

npm install table-as

Usage

import { createTable } from "table-as";

const table = createTable([
  ["0A","0B","0C"],
  ["1A","1B","1C"],
  ["2A","2B","2C"]
]);

console.log(table);

// ┌────────┬────────┬────────┐
// │   0A   │   0B   │   0C   │
// ├────────┼────────┼────────┤
// │   1A   │   1B   │   1C   │
// ├────────┼────────┼────────┤
// │   2A   │   2B   │   2C   │
// └────────┴────────┴────────┘

Issues

Please submit an issue to https://github.com/JairusSW/as-table/issues if you find anything wrong with this library

Keywords

assemblyscript

FAQs

Package last updated on 24 Jun 2024

Did you know?

Socket

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.

Install

Related posts