From cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Wed, 27 Mar 2019 21:01:33 +0100 Subject: remove node_modules --- node_modules/code-excerpt/index.js | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 node_modules/code-excerpt/index.js (limited to 'node_modules/code-excerpt/index.js') diff --git a/node_modules/code-excerpt/index.js b/node_modules/code-excerpt/index.js deleted file mode 100644 index c05f7d855..000000000 --- a/node_modules/code-excerpt/index.js +++ /dev/null @@ -1,38 +0,0 @@ -'use strict'; - -const tabsToSpaces = require('convert-to-spaces'); - -const generateLineNumbers = (line, around) => { - const lineNumbers = []; - - const min = line - around; - const max = line + around; - - for (let lineNumber = min; lineNumber <= max; lineNumber++) { - lineNumbers.push(lineNumber); - } - - return lineNumbers; -}; - -module.exports = (source, line, options) => { - if (typeof source !== 'string') { - throw new TypeError('Source code is missing.'); - } - - if (!line || line < 1) { - throw new TypeError('Line number must start from `1`.'); - } - - source = tabsToSpaces(source).split(/\r?\n/); - - if (line > source.length) { - return null; - } - - options = Object.assign({around: 3}, options); - - return generateLineNumbers(line, options.around) - .filter(line => source[line - 1] !== undefined) - .map(line => ({line, value: source[line - 1]})); -}; -- cgit v1.2.3