Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
unist-util-find
Advanced tools
Unist node finder utility. Useful for working with remark, rehype and retext.
Unist node finder utility. Useful for working with remark, rehype and retext.
npm install --save unist-util-find
var remark = require('remark')
var find = require('unist-util-find')
remark()
.use(function () {
return function (tree) {
// string condition
console.log(find(tree, 'value'))
// object condition
console.log(find(tree, { value: 'emphasis' }))
// function condition
console.log(find(tree, function (node) {
return node.type === 'inlineCode'
}))
}
})
.process('Some _emphasis_, **strongness**, and `code`.')
Result:
// string condition: 'value'
{ type: 'text',
value: 'Some ',
position:
Position {
start: { line: 1, column: 1, offset: 0 },
end: { line: 1, column: 6, offset: 5 },
indent: [] } }
// object condition: { value: 'emphasis' }
{ type: 'text',
value: 'emphasis',
position:
Position {
start: { line: 1, column: 7, offset: 6 },
end: { line: 1, column: 15, offset: 14 },
indent: [] } }
// function condition: function (node) { return node.type === 'inlineCode' }
{ type: 'inlineCode',
value: 'code',
position:
Position {
start: { line: 1, column: 38, offset: 37 },
end: { line: 1, column: 44, offset: 43 },
indent: [] } }
find(node, condition)
Return the first node that matches condition
, or undefined
if no node matches.
node
(Node
) - Node to searchcondition
(string
, object
or function
) - Condition used to test each node. Behaviour depends on the type of the condition:
string
finds first node with a truthy property matching string
object
finds first node that has matching values for all properties of object
function
finds first node for which function
returns true when passed node
as argumentMIT
FAQs
unist utility to find a node
The npm package unist-util-find receives a total of 73,821 weekly downloads. As such, unist-util-find popularity was classified as popular.
We found that unist-util-find demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
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.