
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Break out of functions, recursive or not, in a more composable way than by using exceptions explicitly. Non-local return.
Break out of functions, recursive or not, in a more composable way than by using exceptions explicitly. Non-local return.
You can use breakable to break out of simple loops like this example
but note that it is often simpler to just use .some
instead. Anyways,
here's a minimal example.
var breakable = require("breakable");
breakable(function(brk) {
arr.forEach(function(v) {
if (...) {
brk();
}
});
});
Pass a value to brk
and it becomes the return-value of breakable.
breakable is useful when you want to break out of a deep recursion, passing a value, without riddling your code with exception ceremony.
Instead of:
var esprima = require("esprima").parse;
var traverse = require("ast-traverse");
var ast = esprima("f(!x, y)");
var val;
try {
traverse(ast, {pre: function(node) {
if (node.type === "UnaryExpression" && node.operator === "!") {
val = node.argument;
throw 0;
}
}});
} catch(e) {
if (val === undefined) {
throw e; // re-throw if it wasn't our exception
}
}
console.dir(val); // { type: 'Identifier', name: 'x' }
you use breakable and do:
var breakable = require("breakable");
var esprima = require("esprima").parse;
var traverse = require("ast-traverse");
var ast = esprima("f(!x, y)");
var val = breakable(function(brk) {
traverse(ast, {pre: function(node) {
if (node.type === "UnaryExpression" && node.operator === "!") {
brk(node.argument);
}
}});
});
console.dir(val); // { type: 'Identifier', name: 'x' }
Install using npm
npm install breakable
var breakable = require("breakable");
Clone the repo and include it in a script tag
git clone https://github.com/olov/breakable.git
<script src="breakable/breakable.js"></script>
FAQs
Break out of functions, recursive or not, in a more composable way than by using exceptions explicitly. Non-local return.
The npm package breakable receives a total of 57,326 weekly downloads. As such, breakable popularity was classified as popular.
We found that breakable 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
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.