Socket
Socket
Sign inDemoInstall

arw-parser

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    arw-parser

Parse an ARW text file used in some scientific instrument


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
134 kB
Created
Weekly downloads
 

Readme

Source

arw-parser

NPM version build status Test coverage David deps npm download

Parse an ARW text file used in some scientific instrument

Installation

$ npm install arw-parser

API Documentation

Example

const {parse} = require('arw-parser');

const data = `"Instrument:"  "XYZ"
1   2
3   4
5   6
7   8`;

const result = parse(data);
/* result ->
{
    info: {
        Instrument:'XYZ'
    },
    data: {
        x:[1,3,5,7],
        y:[2,4,6,8]
    }
}
*/

License

MIT

FAQs

Last updated on 16 Nov 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc