Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
is-reference
Advanced tools
Utility for determining whether an AST node is a reference.
foo
is a reference in these cases:
console.log( foo );
var foo;
function foo () {}
function bar ( foo ) {}
export { foo as x };
foo
is not a reference in these cases:
var obj = { foo: 1 };
console.log( obj.foo );
export { x as foo };
In all cases, foo
is an Identifier
node, but the two kinds must be treated differently for the purposes of scope analysis etc. (The examples are non-exhaustive.)
npm install is-reference
Example using Acorn and estree-walker:
const { parse } = require( 'acorn' );
const { walk } = require( 'estree-walker' );
const isReference = require( 'is-reference' );
const identifiers = [];
const references = [];
const ast = parse( `var a = b.c;` );
walk( ast, {
enter ( node, parent ) {
if ( node.type === 'Identifier' ) identifiers.push( node );
if ( isReference( node, parent ) ) references.push( node );
}
});
identifiers.forEach( node => console.log( node.name ) ); // a, b, c
references.forEach( node => console.log( node.name ) ); // a, b
MIT
1.1.3
FAQs
Determine whether an AST node is a reference
The npm package is-reference receives a total of 1,131,251 weekly downloads. As such, is-reference popularity was classified as popular.
We found that is-reference demonstrated a healthy version release cadence and project activity because the last version was released less than 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.