Socket
Socket
Sign inDemoInstall

excerpt-at-line-col

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

excerpt-at-line-col

Get text excerpt that points to a given line and column number


Version published
Maintainers
1
Created
Source

excerpt-at-line-col

Get text excerpt that points to a given line and column number

Example

a.txt

one
two
three
four
five

Some JS code

var excerptAtLineCol = require("excerpt-at-line-col");

var text = require("fs").readFileSync("./a.txt").toString();

console.log(excerptAtLineCol(text, 2, 2, 1));

Here's the output

two
three
  ^
four

API

excerptAtLineCol(text, line_n, col_n, n_surrounding_lines)

  • text - is the text you want to extract an excerpt from
  • line_n - the line number, starting at 0
  • col_n - the column number, starting at 0
  • n_surrounding_lines - the number of surrounding lines you want it to show. Defaulting to 0, i.e. matching line only.

Returns the excerpt string

License

The MIT License (MIT)

Copyright (c) 2015 Small Helm LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Package last updated on 01 Sep 2015

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