Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
ascii-art-coordinate-grid
Advanced tools
Read a 2D coordinate grid from an ASCII-art-like string.
Read a 2D coordinate grid from an ASCII-art-like string.
When writing tests for modules that take some list of 2d coordinates as input (e.g. a polygon or an embedding of a graph), I often find it hard to make my the test's input data human readable. For example, a polygon ends up looking like this:
const polygon = [
[2, 2],
[0, 0],
[2, -2],
[-3, -3],
[-3, 0],
[-3, 3]
]
As you can see, it's not really obvious how that polygon looks like or what properties it has (e.g. being concave). So, in order to improve readability, I created this module, which allows you to draw out your points on an ASCII-art-like coordinate grid instead:
import readGrid from 'ascii-art-coordinate-grid'
const coordinateGrid = `
. . . . . + . . . . .
. . F . . + . . . . .
. . . . . + . A . . .
. . . . . + . . . . .
+ + E + + B + + + + +
. . . . . + . . . . .
. . . . . + . C . . .
. . D . . + . . . . .
. . . . . + . . . . .
`
const points = readGrid(coordinateGrid) // check the "usage" section for further explanations
const polygon = [points.A, points.B, points.C, points.D, points.E, points.F]
Now, polygon
will contain the same numerical values as before, but the reader might have a much easier time understanding the data.
npm install ascii-art-coordinate-grid
This package is ESM only.
import readGrid from 'ascii-art-coordinate-grid'
const gridString = `
. . # . . . .
. . A . . . .
. . # . . . .
. . # . B . .
C # # # # # #
. . # . . . 🇪🇸
`
const options = {
axisCellCharacter: '#', // defaults to `+`
normalCellCharacter: '.', // defaults to `.`
transformCoordinates: ([x, y]) => [x, y], // defaults to the identity function, is applied to all points
groups: false // if you set this to true, you can use the same character more than once and the points object will contain Sets of coordinates per character instead of one coordinate pair per character
}
const points = readGrid(gridString, options)
// {
// A: [0, 3],
// B: [2, 1],
// C: [-2, 0],
// '🇪🇸': [4, -1]
// }
const polygon = [points.A, points.B, points.C, points['🇪🇸']]
Note that point names can be any non-whitespace human perceived characters, so even emoji 🇫🇷
or other combined characters like 나
.
If you found a bug or want to propose a feature, feel free to visit the issues page.
FAQs
Read a 2D coordinate grid from an ASCII-art-like string.
We found that ascii-art-coordinate-grid 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.