Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Small JavaScript library for replacing string literals, regular expressions and comments in JavaScript syntax.
Escaper is a small JavaScript library for replacing string literals, regular expressions and comments in JavaScript syntax.
Supports:
' ... '
" ... "
` ... `
, ` ... ${...} `
/ ... /
// ...
, //* ...
, //! ...
, //# ...
, //@ ...
, //$ ...
/* ... */
, /** ... */
, /*! ... */
, /*# ... */
, /*@ ... */
, /*$ ... */
https://raw.githubusercontent.com/kobezzza/Escaper/master/dist/escaper.min.js
or
npm install escaper
or
bower install escaper
or
git clone https://github.com/kobezzza/Escaper
var str = '"foo" 1 + /foo/ + 2 /* 1 */ 3',
content = [];
// __ESCAPER_QUOT__0_ 1 + __ESCAPER_QUOT__1_ + 2 __ESCAPER_QUOT__2_ 3
str = Escaper.replace(str, true, content);
// "foo" 1 + /foo/ + 2 /* 1 */ 3
Escaper.paste(str, content);
The method replaces all found blocks ' ... '
, " ... "
, ` ... `
, / ... /
, // ...
, /* ... */
to
__ESCAPER_QUOT__number_
in a string and returns a new string.
Arguments
string
str
— source string;(Object|boolean)=
opt_withCommentsOrParams = false
— parameters:{
// The template for replacement
'@label' : '__ESCAPER_QUOT__${pos}_',
'@all' : true, // Replaces all found matches
'@comments': true, // Replaces all kinds of comments
'@strings' : true, // Replaces all kinds of string literals
'@literals': true, // Replaces all kinds of string literals
// and regular expressions
"'" : true,
'"' : true,
'`' : true,
'/' : true,
'//' : true,
'//*' : true,
'//!' : true,
'//#' : true,
'//@' : true,
'//$' : true,
'/*' : true,
'/**' : true,
'/*!' : true,
'/*#' : true,
'/*@' : true,
'/*$' : true
}
If a parameter value is set to -1
, then all found matches will be removed from the final string, or if the value will be set to
true
/false
they will be included/excluded.
If parameter opt_withCommentsOrParams
is boolean:
true // Replaces all found matches
false // Replaces all kinds of string literals and regular expressions
Array=
opt_content = Escaper.content
— array for matches.@return {string}
The method replaces all found blocks __ESCAPER_QUOT__number_
to real content in a string and returns a new string.
Arguments
string
str
— source string;Array=
opt_content = Escaper.content
— array of matches;RegExp=
opt_rgxp
— RegExp for searching, e.g. /__ESCAPER_QUOT__(\d+)_/g
.@return {string}
The MIT License.
FAQs
A small JavaScript library to replace string literals, regular expressions, and comments from the JavaScript syntax.
We found that escaper 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.