Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
extra-javascript-text
Advanced tools
Utilities for processing JavaScript text.
📦 Node.js,
🌐 Web,
📜 Files,
📰 Docs.
This package is available in both Node.js and Web formats. The web format
is exposed as extra_javascript_text
standalone variable and can be loaded from
jsDelivr CDN.
Stability: Experimental.
const fs = require('fs');
const javascript = require('extra-javascript-text');
function main() {
var txt = fs.readFileSync('src/index.ts', 'utf8').replace(/\r?\n/, '\n');
javascript.importSymbols(txt);
// []
javascript.exportSymbols(txt);
// [
// {
// full: 'export function tagStrings',
// name: 'tagStrings',
// kind: 'function',
// isDefault: false
// },
// {
// full: 'export function untagStrings',
// name: 'untagStrings',
// kind: 'function',
// isDefault: false
// },
// ...
// ]
javascript.jsdocSymbols(txt);
// [
// {
// full: '/**\r\n' +
// ' * Get index of string end.\r\n' +
// ' * @param txt javascript text\r\n' +
// ' * @param i index of string begin\r\n' +
// ' */\r\n' +
// ' function indexOfClosingString',
// jsdoc: '/**\r\n' +
// ' * Get index of string end.\r\n' +
// ' * @param txt javascript text\r\n' +
// ' * @param i index of string begin\r\n' +
// ' */',
// name: 'indexOfClosingString',
// kind: 'function',
// isExported: false,
// isDefault: false
// },
// {
// full: '/**\r\n' +
// ' * Tag strings in javascript text and remove them.\r\n' +
// ' * @param txt javascript text\r\n' +
// ' * @returns [updated javascript text, tags]\r\n' +
// ' */\r\n' +
// 'export function tagStrings',
// jsdoc: '/**\r\n' +
// ' * Tag strings in javascript text and remove them.\r\n' +
// ' * @param txt javascript text\r\n' +
// ' * @returns [updated javascript text, tags]\r\n' +
// ' */',
// name: 'tagStrings',
// kind: 'function',
// isExported: true,
// isDefault: false
// },
// ...
// ]
}
main();
Property | Description |
---|---|
tagStrings | Tag strings in javascript text and remove them. |
untagStrings | Untag strings in javascript text by adding them back. |
forEachComment | Match links in javascript text. |
comments | Get comments in javascript text. |
replaceComments | Replace comments in javascript text. |
tagComments | Tag comments in javascript text and remove them. |
untagComments | Untag comments in javascript text by adding them back. |
uncomment | Remove comments from javascript text. |
forEachJsdocSymbol | Match jsdoc symbols in javascript text. |
jsdocSymbols | Get jsdoc symbols in javascript text. |
replaceJsdocSymbols | Replace jsdoc symbols in javascript text. |
forEachExportSymbol | Match export symbols in javascript text. |
exportSymbols | Get export symbols in javascript text. |
replaceExportSymbols | Replace export symbols in javascript text. |
forEachImportSymbol | Match import symbols in javascript text. |
importSymbols | Get import symbols in javascript text. |
replaceImportSymbols | Replace import symbols in javascript text. |
correctDeclarations | Correct type declarations after generation. |
FAQs
Utilities for processing JavaScript text.
The npm package extra-javascript-text receives a total of 18 weekly downloads. As such, extra-javascript-text popularity was classified as not popular.
We found that extra-javascript-text demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.