
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
DebounceIf a condition is met.
debounce(() => {
console.log('Debounced after 1s!')
}, 1000)
let isLoading = true
setTimeout(() => (isLoading = false), 5000)
// Example using function
let dots = ''
debounceIf(
() => {
console.log('Debounced after condition is met!')
},
500,
() => {
dots += '.'
if (dots.length > 3) {
dots = '.'
}
console.log('Loading' + dots)
return !isLoading
},
)
// Example with class instantiation
const debounceInst = new DebounceIf(() => {
console.log('Debounced from DebouncedIf() instance after 2s!')
}, 2000)
debounceInst.debounce()
<input type="text" id="debounce" />
<div id="suggestions"></div>
<script>
var exports = {}
</script>
<script src="debounceIf.js"></script>
<script>
const words = ['world', 'wide', 'web']
document.getElementById('debounce').onkeypress = event => {
exports.debounce(() => {
const search = event.target.value
const suggestions = words
.filter(word => word.startsWith(search.toLowerCase()))
.sort()
.join('<br />')
document.getElementById('suggestions').innerHTML = suggestions
}, 500)
}
</script>
See tests/debounceIf.html to learn more about how to incorporate this into your project via HTML and JS or tests/usage.ts for an example on how to debounceIf with NodeJS and Typescript.
In the project directory, you can run:
npm run build
Builds debounceIf.ts and tests/usage.ts into JS files for usage. usage.ts is a demo of the script being used in Typescript while tests/debounceIf.html provides a demonstration of usage within the browser.
npm run test-usage
Runs the sample usage.js file which should output a log in your console.
You can learn more about the developer here.
FAQs
DebounceIf a condition is met.
The npm package debounceif receives a total of 0 weekly downloads. As such, debounceif popularity was classified as not popular.
We found that debounceif 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.