
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
chopped-and-viewed
Advanced tools
A small node module for parsing fixed-width text.
Supply an array of column widths and get back an array of values.
Supply an array of [name,width]
pairs to get back a hash/dictionary instead.
An optional second argument preserves whitespace on the ends of a value (by default, values are trimmed).
npm install chopped-and-viewed
choppedAndViewed(columnWidths[,preserveWhitespace])
Returns a function that will parse a line of text according to the column widths supplied.
If columnWidths
is an array of character widths, like [5,2,3]
, the parser will produce arrays of strings.
If columnWidths
is an array of two-item arrays with a column name and a character width, like [["firstName",10],["lastName",12]]
, the parser will produce hashes/maps/dictionaries.
By default, each value in the resulting array or hashmaptionary will have whitespace trimmed from the beginning and end. If you want to preserve it, pass true
as a second argument.
var cav = require("chopped-and-viewed");
var parser = cav([3,3,3,4]);
console.log(parser("A BCDEF GHIJ"));
// ['A','BCD','EF','GHIJ']
console.log(parser("NPMIS THEBEST"));
// ['NPM','IS','THE','BEST']
var cav = require("chopped-and-viewed");
var parser = cav([["do",5],["re",3],["mi",5]]);
console.log(parser("FOO BARSTUFF"));
// { do: 'FOO', re: 'BAR', mi: 'STUFF' }
var cav = require("chopped-and-viewed");
var trimWhitespace = cav([8,8,8]);
console.log(trimWhitespace("PEOPLE PLACES THINGS"));
// ['PEOPLE','PLACES','THINGS']
var keepWhitespace = cav([8,8,8],true);
console.log(keepWhitespace("PEOPLE PLACES THINGS"));
// ['PEOPLE ',' PLACES ',' THINGS']
FAQs
For chopping fixed-width text files into JSON or a CSV
The npm package chopped-and-viewed receives a total of 0 weekly downloads. As such, chopped-and-viewed popularity was classified as not popular.
We found that chopped-and-viewed 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.