
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
string-trees
Advanced tools
Combine each branch in a Tree of Strings into its own string
npm install string-trees
or
npm install -g string-trees
Then import the module into your program:
var StringTrees = require('string-trees');
A String Tree is an Array of Strings
StringTrees( Tree, Map, Options )
false''''The default Options can be also set via the following method:
StringTrees.defineSettings( obj )
This method returns the exports object, so it can be called immediately upon importing
var StringTrees = require('string-trees').defineSettings({
delimiter : ' '
});
Combining Strings
var strings = ['hi ','how ','are ','you?']
StringTrees( strings ) == [
'hi how are you?'
]
Combing Strings with Multiple Values
var strings = [
['hi ','hey '],
'how ','are ','you?'
]
StringTrees( strings ) == [
'hi how are you?',
'hey how are you?'
]
Replacing Strings
var strings = ['hi ','how ','are ','you?'],
map = {
'hi' : ['hi','hey']
};
StringTrees( strings, map ) == [
'hi how are you?',
'hey how are you?',
]
Combing Strings with Delimiters
var strings = ['hi','how','are','you?'],
map = {
'hi' : ['hi','hey']
},
options = {
delimiter : ' '
}
StringTrees( strings, map, options ) == [
'hi how are you?',
'hey how are you?'
]
Replacement Delimiters
var strings = ['hi','how','are','you?'],
map = {
'hi' : ['hi','hey']
},
options = {
delimiter : ' ',
delimiterMapped : ','
}
StringTrees( strings, map, options ) == [
'hi, how are you?',
'hey, how are you?'
]
Replace Full Words Only
var strings = ['hi','this','is','a','test'],
map = {
'hi' : ['hi','hey']
},
options = {
delimiter : ' ',
delimiterMapped : ',',
wordBoundary : true
}
StringTrees( strings, map, options ) == [
'hi, this is a test',
'hey, this is a test'
]
//Without the wordBoundary option:
[
'hi, theys is a test',
'hey, theys is a test'
]
FAQs
Combine each branch in a Tree of Strings into its own string
We found that string-trees 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.