overwatch-api-server
Version:
An Unoffical Overwatch HTTP API
66 lines (43 loc) • 965 B
Markdown
> Extract code excerpts
```
$ npm install --save code-excerpt
```
```js
const codeExcerpt = require('code-excerpt');
const source = `
'use strict';
function someFunc() {}
module.exports = () => {
const a = 1;
const b = 2;
const c = 3;
someFunc();
};
`.trim();
const excerpt = codeExcerpt(source, 5);
//=> [
// {line: 2, value: ''},
// {line: 3, value: 'function someFunc() {}'},
// {line: 4, value: ''},
// {line: 5, value: 'module.exports = () => {'},
// {line: 6, value: ' const a = 1;'},
// {line: 7, value: ' const b = 2;'},
// {line: 8, value: ' const c = 3;'}
// ]
```
Type: `string`
Source code.
Type: `number`
Line number to extract excerpt for.
Type: `number`<br>
Default: `3`
Number of surrounding lines to extract.