Socket
Socket
Sign inDemoInstall

vfile-sort

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vfile-sort

Sort vfile messages by line/column


Version published
Weekly downloads
492K
increased by2.84%
Maintainers
1
Weekly downloads
 
Created
Source

vfile-sort Build Status Coverage Status

Sort vfile messages by line/column.

Installation

npm:

npm install vfile-sort

Usage

var vfile = require('vfile');
var sort = require('vfile-sort');

var file = vfile();

file.message('Error!', {line: 3, column: 1});
file.message('Another!', {line: 2, column: 2});

sort(file);

console.log(file.messages.map(String));
//=> ['2:2: Another!', '3:1: Error!']

API

sort(file)

Sort messages in the given vfile.

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 02 Oct 2016

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc